Skip to content

Commit

Permalink
Replacing _ by space is not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Martijn Dirkse committed Jan 6, 2025
1 parent 9cc525f commit fc233c2
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/main/java/nl/nn/testtool/TestTool.java
Original file line number Diff line number Diff line change
Expand Up @@ -1099,13 +1099,6 @@ public Storage getStorage(String name) {
return storage;
}
}
String nameWithPossibleSpaces = name.replace("_", " ");
for (View view : views) {
Storage storage = view.getDebugStorage();
if (nameWithPossibleSpaces.equals(storage.getName())) {
return storage;
}
}
// TODO: Introduce views for test tab also and replace getViews() in TestToolApi with getTabs() (for now the
// frontend is using hardcoded storage name Test for test tab)
if (name.equals("Test")) {
Expand Down

0 comments on commit fc233c2

Please sign in to comment.