Improved readability of variables

Hopefully improved semantics of variables

Fixed typos

Added hyphenations
This commit is contained in:
thatsIch
2014-09-28 11:47:17 +02:00
parent 6b60a0996b
commit 76b147fd5b
220 changed files with 1643 additions and 1662 deletions
+3 -3
View File
@@ -31,10 +31,10 @@ public class NetworkMonitor<T extends IAEStack<T>> extends MEMonitorHandler<T>
while (i.hasNext())
{
Entry<IMEMonitorHandlerReceiver<T>, Object> o = i.next();
IMEMonitorHandlerReceiver<T> recv = o.getKey();
IMEMonitorHandlerReceiver<T> receiver = o.getKey();
if ( recv.isValid( o.getValue() ) )
recv.onListUpdate();
if ( receiver.isValid( o.getValue() ) )
receiver.onListUpdate();
else
i.remove();
}