You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hop.apache.org by "hansva (via GitHub)" <gi...@apache.org> on 2023/02/15 09:10:18 UTC

[GitHub] [hop] hansva opened a new issue, #2345: [Task]: Cleanup dialog code

hansva opened a new issue, #2345:
URL: https://github.com/apache/hop/issues/2345

   ### What needs to happen?
   
   Migration: https://issues.apache.org/jira/browse/HOP-4237
   
   Old code patterns need to be cleaned up in the various dialog classes.
   
   Pattern 1:
   ```
   int i;
   for (i=0;i<....;i++) {
   ...
   } 
   
   ```
   
   Pattern 2: replace with for loop over wFields.getNonEmptyItems() :
   ```
   int nrFields = wFields.nrNonEmpty();
   for (int i=0;....) {
     TableItem item = wFields.getItem(i);
   ...
   } 
   ```
   
   
   
   
   
   
   
   ### Issue Priority
   
   Priority: 3
   
   ### Issue Component
   
   Component: Hop Gui


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@hop.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org