Removes unnecessary semicolons

This commit is contained in:
thatsIch
2014-09-28 00:50:06 +02:00
parent 6b60a0996b
commit 1e71e86acc
60 changed files with 79 additions and 80 deletions
+3 -3
View File
@@ -19,7 +19,7 @@ public class NetworkEventBus
private static final long serialVersionUID = -3079021487019171205L;
};
}
class EventMethod
{
@@ -52,7 +52,7 @@ public class NetworkEventBus
if ( e.isCanceled() )
throw new NetworkEventDone();
}
};
}
class MENetworkEventInfo
{
@@ -69,7 +69,7 @@ public class NetworkEventBus
for (EventMethod em : methods)
em.invoke( obj, e );
}
};
}
private static Set<Class> readClasses = new HashSet();
private static Hashtable<Class<? extends MENetworkEvent>, Hashtable<Class, MENetworkEventInfo>> events = new Hashtable();