summaryrefslogtreecommitdiff
path: root/filter/qa/complex/filter/detection/typeDetection/Helper.java
diff options
context:
space:
mode:
Diffstat (limited to 'filter/qa/complex/filter/detection/typeDetection/Helper.java')
-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);
}
}