Merge: Fixed minor NPE jdev_excrep-stable
authorJakub Lehotsky <jlehotsky@netbeans.org>
Tue, 21 Feb 2017 10:38:14 +0100
branchjdev_excrep-stable
changeset 63822e7a0966e1ca
parent 6379 a1504a0cfd06
parent 6381 54f32566b123
child 6384 a5f4818e9de0
Merge: Fixed minor NPE
     1.1 --- a/logger/uihandler.api/src/org/netbeans/modules/exceptions/entity/Submit.java	Thu Feb 09 17:45:56 2017 +0100
     1.2 +++ b/logger/uihandler.api/src/org/netbeans/modules/exceptions/entity/Submit.java	Tue Feb 21 10:38:14 2017 +0100
     1.3 @@ -168,6 +168,8 @@
     1.4      }
     1.5  
     1.6      public String getShortTestName() {
     1.7 +        if (testName == null)
     1.8 +            return null;
     1.9          if (testName.contains("::")) {
    1.10              String[] classSplit = testName.split("::");
    1.11              if (classSplit[0].contains(".")) {