Skip to content

Commit c47301a

Browse files
Remove unnecessary cast
1 parent 8204309 commit c47301a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OpenLdapSync/src/org/labkey/openldapsync/ldap/LdapEntry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public boolean isEnabled()
7676
try
7777
{
7878
int value = Integer.parseInt(a);
79-
return ((int) value & 2) == 0;
79+
return (value & 2) == 0;
8080
}
8181
catch (NumberFormatException e)
8282
{

0 commit comments

Comments
 (0)