Skip to content

Commit

Permalink
issue #168 - "Copy Qualified Name to Clipboard" does not work in editor
Browse files Browse the repository at this point in the history
fixes resource copy in constructor

Signed-off-by: Andre Bossert <anb0s@anbos.de>
  • Loading branch information
anb0s committed Nov 4, 2018
1 parent dc7d01b commit a441627
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/src/de/anbos/eclipse/easyshell/plugin/Resource.java
Expand Up @@ -43,7 +43,8 @@ public class Resource {
//Activator.logDebug("file_name : >" + fileName + "<");

public Resource(Resource myRes) {
file = myRes.getFile();
this.file = myRes.getFile();
this.resource = myRes.getResource();
}

public Resource(File file, IResource resource) {
Expand Down

0 comments on commit a441627

Please sign in to comment.