Skip to content
Snippets Groups Projects
Commit c188ca53 authored by felmer's avatar felmer
Browse files

clean up warnings

SVN: 12948
parent 29699be3
No related branches found
No related tags found
No related merge requests found
......@@ -122,17 +122,21 @@ public final class AnnotationUtilsTest
private static class A
{
@SuppressWarnings("unused")
Object a;
@SuppressWarnings("unused")
@Deprecated
Object b;
@SuppressWarnings("unused")
@BeanProperty
void setA(final Object a)
{
this.a = a;
}
@SuppressWarnings("unused")
void doSomething(final Object c, final String d, @Deprecated
final Object e)
{
......@@ -142,6 +146,7 @@ public final class AnnotationUtilsTest
private final static class B extends A
{
@SuppressWarnings("unused")
@Deprecated
Object c;
......
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