Skip to content

Commit 80fc389

Browse files
committed
use isWord() in the CryptaSymbols consumer #4141
1 parent 7a87d7d commit 80fc389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/cryptator/tree/CryptaSymbols.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public CryptaSymbols() {
2525

2626
@Override
2727
public void accept(ICryptaNode node, int numNode) {
28-
if (!node.isInternalNode() && !node.isConstant()) {
28+
if (!node.isWord()) {
2929
for (Character c : node.getWord()) {
3030
letters.add(c);
3131
}

0 commit comments

Comments
 (0)