From 6ee6e2a43542e1a47e765df8d83e193c6dcdd5f9 Mon Sep 17 00:00:00 2001 From: Karl Woditsch Date: Wed, 20 Nov 2013 09:21:32 +0100 Subject: [PATCH] Add methods parenthesis --- .../src/bigbrother/gui/tasks/treechart/TreeNodeController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BigBrother-Gui/src/bigbrother/gui/tasks/treechart/TreeNodeController.java b/BigBrother-Gui/src/bigbrother/gui/tasks/treechart/TreeNodeController.java index f0f70c7..662c142 100644 --- a/BigBrother-Gui/src/bigbrother/gui/tasks/treechart/TreeNodeController.java +++ b/BigBrother-Gui/src/bigbrother/gui/tasks/treechart/TreeNodeController.java @@ -65,7 +65,7 @@ public ListCell call(ListView p) { public void updateItem(ObservableMethod item, boolean empty){ super.updateItem(item, empty); if(!empty){ - this.setText(item.getName() + " : " + item.getReturnType().getSimpleName()); + this.setText(item.getName() + "() : " + item.getReturnType().getSimpleName()); switch(item.getVisibility()){ case PRIVATE: this.setTextFill(Color.DARKRED);