Skip to content

Commit

Permalink
Fix redundant new String() call
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Hort-Giess committed Jun 13, 2024
1 parent 81cf587 commit 30c4aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/application/SamlTabController.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public HttpRequest getRequest() {
String textMessage = null;

if (isRawMode) {
textMessage = new String(textArea.getContents().toString());
textMessage = textArea.getContents().toString();
} else {
try {
textMessage = xmlHelpers
Expand Down

0 comments on commit 30c4aef

Please sign in to comment.