Skip to content

Commit

Permalink
merge bug fix for finder resources
Browse files Browse the repository at this point in the history
  • Loading branch information
d-akara committed Mar 17, 2018
2 parents 4d561d3 + 4563627 commit f034351
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dakara.eclipse.commander.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Assign your preferred key bindings to use these new command features.
</description>

<license url="http://www.example.com/license">
Copyright 2017 Chad Meadows
Copyright 2017, 2018 Chad Meadows

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ public class ResourceItem {
public final String path;
public final String project;
public ResourceItem(String name, String path, String project) {
if (name == null) name = "";
if (path == null) path = "";
if (project == null) project = "";

this.name = name;
this.path = path;
this.project = project;
Expand Down

0 comments on commit f034351

Please sign in to comment.