ctabin commented on issue #7328:
URL: https://github.com/apache/netbeans/issues/7328#issuecomment-2074420910

   The file is just a (very) simple POJO. It happen on multiple different 
files, event simple ones.
   
   Here is the cleaned up content showing that there is nothing special in this 
class:
   ```java
   
   public class MyFunction extends AbstractFunction {
       public static final String CODE_YOUTH = "1";
       
       public static final Constraint MY_CONSTRAINT = new Constraint() {
           @Override
           public boolean isValid(Employee employee, LineContext context, 
Context input) {
               //...
           }
           
           @Override public String getName() { return "1"; }
       };
       
       public static interface DataReader {
           boolean withFranchise(Employee employee, Context slc);
       }
       
       private final DataReader reader;
       private final String cumulativeId;
       private final String avsMonthLineId;
   
       public MyFunction(DataReader reader, String cumulativeId, String lineId) 
{
           //...
       }
       
       @Override
       protected void internalCompute(Employee employee, LineContext context, 
Context input) {
           //...
       }
   }
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to