Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bz-1007781: Editors should not contain file extension of assets
  • Loading branch information
jervisliu committed Sep 18, 2013
1 parent 4f97926 commit 6283dcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -21,7 +21,7 @@ public void onOpen() {

@WorkbenchPartTitle
public String getTitle() {
return "Text Editor [" + path.getFileName() + "]";
return "Text Editor [" + path.getFileNameWithoutExtension() + "]";
}

@WorkbenchPartView
Expand Down
Expand Up @@ -85,7 +85,7 @@ public void onLostFocus() {

@WorkbenchPartTitle
public String getTitle() {
return "Java Editor [" + path.getFileName() + "]";
return "Java Editor [" + path.getFileNameWithoutExtension() + "]";
}

@WorkbenchPartView
Expand Down

0 comments on commit 6283dcf

Please sign in to comment.