Skip to content

Commit

Permalink
Address review comments 2
Browse files Browse the repository at this point in the history
  • Loading branch information
KostasTsiounis committed Nov 28, 2023
1 parent 0e1e7cf commit bdf576b
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,6 @@ private static void getProfileID(Properties props) {
String defaultMatch = null;
for (Object keyObject : props.keySet()) {
if (keyObject instanceof String key) {
/* Find the property that pertains to this profileID and indicates whether
* it is the default one.
*/
if (key.startsWith(potentialProfileID) && key.endsWith(".desc.default")) {
// Check if property is set to true.
if (Boolean.parseBoolean(props.getProperty(key))) {
Expand All @@ -326,7 +323,6 @@ private static void getProfileID(Properties props) {
+ " profiles for " + selectedProfile);
}
}

}
}
}
Expand Down

0 comments on commit bdf576b

Please sign in to comment.