Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

Commit

Permalink
Add methods parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
Rauks committed Nov 20, 2013
1 parent f268f9d commit 6ee6e2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public ListCell<ObservableMethod> call(ListView<ObservableMethod> 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);
Expand Down

0 comments on commit 6ee6e2a

Please sign in to comment.