Skip to content

Commit

Permalink
Fix codacy validation
Browse files Browse the repository at this point in the history
  • Loading branch information
rubnogueira committed May 14, 2020
1 parent b3d9854 commit 7da7938
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Autopsy Forensic Browser
*
* Copyright 2011-2018 Basis Technology Corp.
* Copyright 2011-2020 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Autopsy Forensic Browser
*
* Copyright 2011-2018 Basis Technology Corp.
* Copyright 2011-2020 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
11 changes: 10 additions & 1 deletion Core/src/org/sleuthkit/autopsy/python/JythonModuleLoader.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Autopsy Forensic Browser
*
* Copyright 2014 Basis Technology Corp.
* Copyright 2014-2020 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -175,6 +175,9 @@ private static interface LineFilter {
boolean accept(String line);
}

/**
* Filter IngestModule interface implementations
*/
private static class IngestModuleFactoryDefFilter implements LineFilter {

@Override
Expand All @@ -183,6 +186,9 @@ public boolean accept(String line) {
}
}

/**
* Filter GeneralReportModule interface implementations
*/
private static class GeneralReportModuleDefFilter implements LineFilter {

@Override
Expand All @@ -191,6 +197,9 @@ public boolean accept(String line) {
}
}

/**
* Filter DataSourceProcessor interface implementations
*/
private static class DataSourceProcessorDefFilter implements LineFilter {

@Override
Expand Down

0 comments on commit 7da7938

Please sign in to comment.