langtools/src/share/classes/com/sun/tools/javac/code/Lint.java
changeset 6151 dd513881e71d
parent 6148 3a8158299c51
child 7211 163fe60f63de
equal deleted inserted replaced
6150:d055fa8ced62 6151:dd513881e71d
   117         this.augmentor = other.augmentor;
   117         this.augmentor = other.augmentor;
   118         this.values = other.values.clone();
   118         this.values = other.values.clone();
   119         this.suppressedValues = other.suppressedValues.clone();
   119         this.suppressedValues = other.suppressedValues.clone();
   120     }
   120     }
   121 
   121 
       
   122     @Override
   122     public String toString() {
   123     public String toString() {
   123         return "Lint:[values" + values + " suppressedValues" + suppressedValues + "]";
   124         return "Lint:[values" + values + " suppressedValues" + suppressedValues + "]";
   124     }
   125     }
   125 
   126 
   126     /**
   127     /**