src/share/classes/com/sun/tools/javac/util/Warner.java

changeset 333
7c2d6da61646
parent 1
9a66ca7c79fa
child 554
9d9f26857129
equal deleted inserted replaced
332:cf08b64e87da 333:7c2d6da61646
29 29
30 /** 30 /**
31 * An interface to support optional warnings, needed for support of 31 * An interface to support optional warnings, needed for support of
32 * unchecked conversions and unchecked casts. 32 * unchecked conversions and unchecked casts.
33 * 33 *
34 * <p>Nothing described in this source file is part of any supported 34 * <p><b>This is NOT part of any API supported by Sun Microsystems.
35 * API. If you write code that depends on this, you do so at your own 35 * If you write code that depends on this, you do so at your own risk.
36 * risk. This code and its internal interfaces are subject to change 36 * This code and its internal interfaces are subject to change or
37 * or deletion without notice. 37 * deletion without notice.</b>
38 */ 38 */
39 public class Warner { 39 public class Warner {
40 public static final Warner noWarnings = new Warner(); 40 public static final Warner noWarnings = new Warner();
41 41
42 private DiagnosticPosition pos = null; 42 private DiagnosticPosition pos = null;

mercurial