Browse Source

Fixed bug

main
Christian Pape 5 days ago
committed by Dustin Frisch
parent
commit
45089a0488
No known key found for this signature in database GPG Key ID: B4C3BF012D9B26BE
  1. 4
      src/main/java/de/hsfulda/informatik/LdapSync.java

4
src/main/java/de/hsfulda/informatik/LdapSync.java

@ -178,6 +178,10 @@ public class LdapSync {
} }
} }
if (m.group(2).isEmpty()) {
return null;
}
final int s = m.group(2).length(); final int s = m.group(2).length();
final int z = Integer.parseInt(m.group(2)); final int z = Integer.parseInt(m.group(2));

Loading…
Cancel
Save