Uploaded image for project: 'Code Tools'
  1. Code Tools
  2. CODETOOLS-7900229

Incompatible sigtest refactoring

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • st3.0
    • st3.0
    • 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;
          }

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

              Created:
              Updated:
              Resolved: