Suppress Eclipse warnings for deliberate behaviour
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@882968 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9a76dcf3c9
commit
a12632228f
|
@ -24,5 +24,6 @@ class Parent implements Foo {
|
||||||
public String s = "s";
|
public String s = "s";
|
||||||
protected boolean b = false;
|
protected boolean b = false;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
@SuppressWarnings("unused")
|
||||||
private double d = 0.0;
|
private double d = 0.0;
|
||||||
}
|
}
|
|
@ -24,6 +24,7 @@ public class StaticContainer {
|
||||||
public static final Object IMMUTABLE_PUBLIC = "public";
|
public static final Object IMMUTABLE_PUBLIC = "public";
|
||||||
protected static final Object IMMUTABLE_PROTECTED = "protected";
|
protected static final Object IMMUTABLE_PROTECTED = "protected";
|
||||||
static final Object IMMUTABLE_PACKAGE = "";
|
static final Object IMMUTABLE_PACKAGE = "";
|
||||||
|
@SuppressWarnings("unused")
|
||||||
private static final Object IMMUTABLE_PRIVATE = "private";
|
private static final Object IMMUTABLE_PRIVATE = "private";
|
||||||
|
|
||||||
public static Object mutablePublic;
|
public static Object mutablePublic;
|
||||||
|
|
Loading…
Reference in New Issue