1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Suppress warnings: unchecked -> rawtypes (eclipse ...)

This commit is contained in:
Sebastian Kaspari 2010-08-27 16:34:25 +02:00
parent 367fe94dc6
commit e0ae24eac8

View File

@ -55,9 +55,9 @@ public class IRCService extends Service
private HashMap<Integer, IRCConnection> connections; private HashMap<Integer, IRCConnection> connections;
private boolean foreground = false; private boolean foreground = false;
@SuppressWarnings("unchecked") @SuppressWarnings("rawtypes")
private static final Class[] mStartForegroundSignature = new Class[] { int.class, Notification.class }; private static final Class[] mStartForegroundSignature = new Class[] { int.class, Notification.class };
@SuppressWarnings("unchecked") @SuppressWarnings("rawtypes")
private static final Class[] mStopForegroundSignature = new Class[] { boolean.class }; private static final Class[] mStopForegroundSignature = new Class[] { boolean.class };
public static final String ACTION_FOREGROUND = "org.yaaic.service.foreground"; public static final String ACTION_FOREGROUND = "org.yaaic.service.foreground";