Incompatible sigtest refactoring

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P3
    • st3.0
    • Affects Version/s: st3.0
    • Component/s: tools
    • None
    • b11
    • b12
    • Verified

      JCK cannot update to the recent sigtest 3.0 b11
      Recent sigtest refactoring in b11 substituted static field with an instance getter/setter. This change made JCK libs incompatible.

      Was:
          public static boolean isConstantValuesTracked = true;

      Now:
          private boolean isConstantValuesTracked = true;

          public boolean isConstantValuesTracked() {
              return isConstantValuesTracked;
          }
          
          public void setConstantValuesTracked(boolean t) {
              isConstantValuesTracked = t;
          }

            Assignee:
            Mikhail Ershov (Inactive)
            Reporter:
            Victor Rudometov
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: