Skip to content

Commit

Permalink
Write AbstractScriptEntity.toString() in terms of getName() (#1380)
Browse files Browse the repository at this point in the history
Fixes #1378.
  • Loading branch information
khatchad authored Mar 21, 2024
1 parent 8a8f874 commit 8927f91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public String getName() {

@Override
public String toString() {
return "script " + file.getName();
return this.getName();
}

@Override
Expand Down

0 comments on commit 8927f91

Please sign in to comment.