src/share/classes/com/sun/tools/javac/code/Lint.java

changeset 122
1a9276e7cb18
parent 54
eaf608c64fec
child 124
b81a9aa785ba
equal deleted inserted replaced
121:609fb59657b4 122:1a9276e7cb18
181 SERIAL("serial"), 181 SERIAL("serial"),
182 182
183 /** 183 /**
184 * Warn about unchecked operations on raw types. 184 * Warn about unchecked operations on raw types.
185 */ 185 */
186 UNCHECKED("unchecked"); 186 UNCHECKED("unchecked"),
187
188 /**
189 * Warn about unchecked operations on raw types.
190 */
191 RAW("rawtypes");
187 192
188 LintCategory(String option) { 193 LintCategory(String option) {
189 this.option = option; 194 this.option = option;
190 map.put(option, this); 195 map.put(option, this);
191 } 196 }

mercurial