Skip to content
Snippets Groups Projects
Commit cb901304 authored by cramakri's avatar cramakri
Browse files

Fixing warnings.

SVN: 14218
parent 9ade3a20
No related branches found
No related tags found
No related merge requests found
...@@ -121,17 +121,21 @@ public final class AnnotationUtilsTest ...@@ -121,17 +121,21 @@ public final class AnnotationUtilsTest
private static class A private static class A
{ {
@SuppressWarnings("unused")
@Deprecated @Deprecated
protected Object a; protected Object a;
@SuppressWarnings("unused")
protected Object b; protected Object b;
@SuppressWarnings("unused")
@BeanProperty @BeanProperty
protected void setA(final Object a) protected void setA(final Object a)
{ {
this.a = a; this.a = a;
} }
@SuppressWarnings("unused")
protected void doSomething(final Object c, final String d, @Deprecated final Object e) protected void doSomething(final Object c, final String d, @Deprecated final Object e)
{ {
} }
...@@ -139,6 +143,7 @@ public final class AnnotationUtilsTest ...@@ -139,6 +143,7 @@ public final class AnnotationUtilsTest
private final static class B extends A private final static class B extends A
{ {
@SuppressWarnings("unused")
@Deprecated @Deprecated
protected Object x; protected Object x;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment