Removes unnecessary returns

This commit is contained in:
thatsIch
2014-09-29 09:47:17 +02:00
parent 35c00873c1
commit aba0c44916
6 changed files with 2 additions and 25 deletions
@@ -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 );