From b7f92caaf3f3684b117a338e9fd6e0caefc1865b Mon Sep 17 00:00:00 2001 From: Dakara Date: Fri, 9 Mar 2018 19:09:58 -0500 Subject: [PATCH 1/2] handle null condition --- .../src/dakara/eclipse/plugin/platform/ResourceItem.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dakara.eclipse.commander.plugin/src/dakara/eclipse/plugin/platform/ResourceItem.java b/dakara.eclipse.commander.plugin/src/dakara/eclipse/plugin/platform/ResourceItem.java index 7363c90..a62ced7 100644 --- a/dakara.eclipse.commander.plugin/src/dakara/eclipse/plugin/platform/ResourceItem.java +++ b/dakara.eclipse.commander.plugin/src/dakara/eclipse/plugin/platform/ResourceItem.java @@ -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; From 45636279db71ff7efb9dc06a93665c79a8ecd003 Mon Sep 17 00:00:00 2001 From: Dakara Date: Fri, 9 Mar 2018 19:21:11 -0500 Subject: [PATCH 2/2] update version --- dakara.eclipse.commander.feature/feature.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dakara.eclipse.commander.feature/feature.xml b/dakara.eclipse.commander.feature/feature.xml index b1b9650..3b8413c 100644 --- a/dakara.eclipse.commander.feature/feature.xml +++ b/dakara.eclipse.commander.feature/feature.xml @@ -2,7 +2,7 @@ + version="1.1.2"> 1) Commander - a more powerful version of quick access @@ -11,7 +11,7 @@ Assign your preferred key bindings to use these new command features. - 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 "Software"), 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: