Skip to content

Commit bd17c29

Browse files
Fix arialdomartini#44 - using equals() rather than ==
1 parent 9ee2602 commit bd17c29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ public class TheService {
403403
final String rewrittenUrl = fileHandler.getXmlFileFromFileName(file);
404404
final String executionId = fileHandler.getExecutionIdFromFileName(file);
405405

406-
if ((executionId == "") || (rewrittenUrl == "")) {
406+
if (executionId.equals("") || rewrittenUrl.equals("")) {
407407
return "";
408408
}
409409

0 commit comments

Comments
 (0)