Hey Epo, welcome back :)
That is strange. When I run a testcase like this, it works:
@Test
public void testAdditionalEquals() {
String data =
"account-dn = cn=accountname,ou=users,o=organization\n";
Props props = new Props();
props.load(data);
assertEquals("cn=accountname,ou=users,o=organization", props.getValue("account-dn"));
}
I mean, only the first 'equals' is the separator and commas shouldn't do anything. Are you working with the latest version? Can you send me the minimal props file that fails for you?