Skip to content
Snippets Groups Projects
Commit 8124eabf authored by brinn's avatar brinn
Browse files

Fix some Eclipse warnings about raw types.

SVN: 25543
parent 129e7626
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ public class DefaultSessionManagerTest ...@@ -95,7 +95,7 @@ public class DefaultSessionManagerTest
logRecorder = new BufferedAppender("%-5p %c - %m%n", Level.DEBUG); logRecorder = new BufferedAppender("%-5p %c - %m%n", Level.DEBUG);
} }
@SuppressWarnings("unchecked") @SuppressWarnings({ "unchecked", "rawtypes" })
private ISessionManager<BasicSession> createSessionManager(int sessionExpiration) private ISessionManager<BasicSession> createSessionManager(int sessionExpiration)
{ {
return new DefaultSessionManager(sessionFactory, prefixGenerator, authenticationService, return new DefaultSessionManager(sessionFactory, prefixGenerator, authenticationService,
......
...@@ -163,7 +163,8 @@ public final class BeanUtils ...@@ -163,7 +163,8 @@ public final class BeanUtils
{ {
}; };
@SuppressWarnings("unchecked") @SuppressWarnings(
{ "unchecked", "rawtypes" })
static final Set<Class> immutableTypes = new LinkedHashSet<Class>(Arrays.asList(boolean.class, static final Set<Class> immutableTypes = new LinkedHashSet<Class>(Arrays.asList(boolean.class,
Boolean.class, byte.class, Byte.class, short.class, Short.class, int.class, Boolean.class, byte.class, Byte.class, short.class, Short.class, int.class,
Integer.class, long.class, Long.class, float.class, Float.class, double.class, Integer.class, long.class, Long.class, float.class, Float.class, double.class,
...@@ -545,7 +546,8 @@ public final class BeanUtils ...@@ -545,7 +546,8 @@ public final class BeanUtils
} }
} }
@SuppressWarnings("unchecked") @SuppressWarnings(
{ "unchecked", "rawtypes" })
private static <T> T constructCollection( private static <T> T constructCollection(
final Constructor<? extends Collection> constructorWithSize, final int size) final Constructor<? extends Collection> constructorWithSize, final int size)
throws InstantiationException, IllegalAccessException, IllegalArgumentException, throws InstantiationException, IllegalAccessException, IllegalArgumentException,
...@@ -559,7 +561,8 @@ public final class BeanUtils ...@@ -559,7 +561,8 @@ public final class BeanUtils
{ size }); { size });
} }
@SuppressWarnings("unchecked") @SuppressWarnings(
{ "unchecked", "rawtypes" })
private final static <T> T constructCollection(final Class<? extends Collection> collectionClazz) private final static <T> T constructCollection(final Class<? extends Collection> collectionClazz)
throws InstantiationException, IllegalAccessException throws InstantiationException, IllegalAccessException
{ {
...@@ -709,7 +712,7 @@ public final class BeanUtils ...@@ -709,7 +712,7 @@ public final class BeanUtils
} }
} }
@SuppressWarnings("unchecked") @SuppressWarnings({ "unchecked", "rawtypes" })
private static void addToUntypedCollection(final Collection destination, final Object element) private static void addToUntypedCollection(final Collection destination, final Object element)
{ {
destination.add(element); destination.add(element);
......
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