Endless loop in DefaultInvoker.getProperty when accessing field via getter/setter without @

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      The following script for some reason will make Jenkins go out of memory and will never complete the execution.

      node {
      	HipNotifier chip = new HipNotifier('A')
          echo chip.name	
      }
      
      public class HipNotifier {
          private String name;
      
          public HipNotifier(String pName) {
              this.name = pName
          }
      
          String getName() {
              return name
          }
      }
      

            Assignee:
            Jesse Glick
            Reporter:
            Luca Vitucci
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: