Skip to content

Commit

Permalink
Revert change that shouldn't have been part of previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gquerret committed Jan 31, 2023
1 parent cfb2449 commit 59607ad
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/java/com/phenix/pct/PCTConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,12 @@ public List<String> getConnectParametersList() {
list.add(logicalName);
}

if (Boolean.TRUE.equals(singleUser)) {
list.add("-1"); //$NON-NLS-1$
} else {
list.remove("-1");
if (singleUser != null) {
if (singleUser) {
list.add("-1"); //$NON-NLS-1$
} else {
list.remove("-1");
}
}

if (cacheFile != null) {
Expand Down

0 comments on commit 59607ad

Please sign in to comment.