Simplify logic

This commit is contained in:
Stephen Connolly 2014-01-06 10:49:03 +00:00
parent a6614ebd68
commit 7267996db8
1 changed files with 2 additions and 2 deletions

View File

@ -94,12 +94,12 @@ private static int compareStrings( String s1, String s2 )
return 0;
}
if ( s1 == null && s2 != null )
if ( s1 == null /* && s2 != null */ )
{
return -1;
}
if ( s1 != null && s2 == null )
if ( /* s1 != null && */ s2 == null )
{
return 1;
}