diff options
-rw-r--r-- | src/test/com/jogamp/opengl/test/android/LauncherUtil.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/test/com/jogamp/opengl/test/android/LauncherUtil.java b/src/test/com/jogamp/opengl/test/android/LauncherUtil.java index 1f9c26b7b..11416cd67 100644 --- a/src/test/com/jogamp/opengl/test/android/LauncherUtil.java +++ b/src/test/com/jogamp/opengl/test/android/LauncherUtil.java @@ -249,7 +249,7 @@ public class LauncherUtil { } final String q = uri.getQuery(); - final int q_l = q.length(); + final int q_l = null != q ? q.length() : -1; int q_e = -1; while(q_e < q_l) { int q_b = q_e + 1; // next term @@ -293,9 +293,6 @@ public class LauncherUtil { if(null == activityName) { throw new RuntimeException("Activity is not NULL"); } - if(packages.size() == 0) { - throw new RuntimeException("Empty package list"); - } } } |