summaryrefslogtreecommitdiff
path: root/filter/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-19 14:18:44 +0200
committerNoel Grandin <noel@peralex.com>2014-08-19 14:57:16 +0200
commit56ef5533fc1bce2134721ae64d4d6c18a3526a7a (patch)
treeeafaa8b3c9c7fd4bbeb03fdb1be091f94c870953 /filter/qa
parent1e6f0b2d8b35f856637eedf91729e522fcc633e8 (diff)
java: classes in java.lang package do not need to be fully qualified
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
Diffstat (limited to 'filter/qa')
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/Helper.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/qa/complex/filter/detection/typeDetection/Helper.java b/filter/qa/complex/filter/detection/typeDetection/Helper.java
index 1c445901cdcd..81bd8bb64b3d 100644
--- a/filter/qa/complex/filter/detection/typeDetection/Helper.java
+++ b/filter/qa/complex/filter/detection/typeDetection/Helper.java
@@ -208,7 +208,7 @@ public class Helper {
}
}catch (IOException e) {
- }catch(java.lang.NullPointerException e) {
+ }catch(NullPointerException e) {
return null;
}
return null;
@@ -343,7 +343,7 @@ public class Helper {
try{
String fileURL = m_hFileURLs.get(fileAlias).toString();
return utils.getFullURL(ensureEndingFileSep(m_sTestDocPath) + fileURL);
- } catch (java.lang.NullPointerException e){
+ } catch (NullPointerException e){
throw new FileAliasNotFoundException(fileAlias);
}
@@ -358,7 +358,7 @@ public class Helper {
throws FileAliasNotFoundException{
try{
return m_hFileTypes.get(fileAlias).toString();
- } catch (java.lang.NullPointerException e){
+ } catch (NullPointerException e){
throw new FileAliasNotFoundException(fileAlias);
}
}