Skip to content

Commit

Permalink
Remove useless condition
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Nov 1, 2023
1 parent 0a71437 commit fd93f81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ object Topics {
val tnHead = tn.charAt(0)
if (tfnHead == '/' && tnHead != '/') {
false
} else if (tfnHead == '/' && tnHead == '/' && tn.length == 1) {
} else if (tfnHead == '/' && tn.length == 1) {
matchStrings(tfn, tn.tail)
} else if (tfnHead != '+' && tfnHead != '#' && tfnHead != tnHead) {
false
Expand Down

0 comments on commit fd93f81

Please sign in to comment.