Merge pull request #186 from thatsIch/Return

Removes unnecessary returns
This commit is contained in:
Chris
2014-09-29 17:58:58 -07:00
6 changed files with 2 additions and 24 deletions
@@ -587,9 +587,7 @@ public abstract class AEBaseContainer extends Container
if ( syncData.containsKey( idx ) )
{
syncData.get( idx ).update( (long) value );
return;
}
}
final public void updateFullProgressBar(int idx, long value)
@@ -39,9 +39,7 @@ public class SyncData
try
{
Object val = field.get( source );
if ( val == clientVersion )
return;
else if ( val != null && clientVersion == null )
if ( val != null && clientVersion == null )
send( c, val );
else if ( !val.equals( clientVersion ) )
send( c, val );