Various small fixes

This commit is contained in:
Christopher Schnick
2022-02-19 02:53:58 +01:00
parent a9ee9c1bdc
commit bcc581c0bd
10 changed files with 74 additions and 22 deletions

View File

@@ -89,6 +89,6 @@ public class DataSourceId {
@Override
public String toString() {
return collectionName.toLowerCase() + SEPARATOR + (entryName != null ? entryName.toLowerCase() : "");
return (collectionName != null ? collectionName.toLowerCase() : "") + SEPARATOR + entryName;
}
}