Skip to content

Commit

Permalink
Removed superfluous println() statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuacrotts committed Jul 3, 2022
1 parent 2ed9424 commit ffc3ebf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private void setThisFx () {

private void setThisOnMousePressed () {
super.setOnMousePressed(event -> {
System.out.println("is pressed");
System.out.println(event.getButton() + " is pressed");
if (userAnswer == null)
userAnswer = false;
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ public ParseTreeNode(WffTree _wffTree) {
super.getChildren().add(new TreeNodeText(_wffTree.getSymbol()));
int counter = 1;
ParseTreeNode curNode;
System.out.println("THIS: " + _wffTree.getStringRep() + ", ch: " + _wffTree.getChildrenSize());
for (WffTree wffTree : _wffTree.getChildren()) {
System.out.println(": " + wffTree.getStringRep());
}
for (WffTree wffTree : _wffTree.getChildren()) {
curNode = new ParseTreeNode(wffTree);
curNode.setTreeParent(this);
Expand Down

0 comments on commit ffc3ebf

Please sign in to comment.