mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-11 23:46:15 +00:00
Remove methods with unnecessary public access from ThunderbirdMboxFileIngestModule
This commit is contained in:
parent
3fbca05057
commit
f87fd0cc8a
@ -306,7 +306,7 @@ public final class ThunderbirdMboxFileIngestModule implements FileIngestModule {
|
|||||||
* @throws NoCurrentCaseException if there is no open case.
|
* @throws NoCurrentCaseException if there is no open case.
|
||||||
* @return the temporary folder
|
* @return the temporary folder
|
||||||
*/
|
*/
|
||||||
public static String getTempPath() throws NoCurrentCaseException {
|
static String getTempPath() throws NoCurrentCaseException {
|
||||||
String tmpDir = Case.getOpenCase().getTempDirectory() + File.separator
|
String tmpDir = Case.getOpenCase().getTempDirectory() + File.separator
|
||||||
+ "EmailParser"; //NON-NLS
|
+ "EmailParser"; //NON-NLS
|
||||||
File dir = new File(tmpDir);
|
File dir = new File(tmpDir);
|
||||||
@ -322,7 +322,7 @@ public final class ThunderbirdMboxFileIngestModule implements FileIngestModule {
|
|||||||
* @throws NoCurrentCaseException if there is no open case.
|
* @throws NoCurrentCaseException if there is no open case.
|
||||||
* @return the module output folder
|
* @return the module output folder
|
||||||
*/
|
*/
|
||||||
public static String getModuleOutputPath() throws NoCurrentCaseException {
|
static String getModuleOutputPath() throws NoCurrentCaseException {
|
||||||
String outDir = Case.getOpenCase().getModuleDirectory() + File.separator
|
String outDir = Case.getOpenCase().getModuleDirectory() + File.separator
|
||||||
+ EmailParserModuleFactory.getModuleName();
|
+ EmailParserModuleFactory.getModuleName();
|
||||||
File dir = new File(outDir);
|
File dir = new File(outDir);
|
||||||
@ -338,7 +338,7 @@ public final class ThunderbirdMboxFileIngestModule implements FileIngestModule {
|
|||||||
* @throws NoCurrentCaseException if there is no open case.
|
* @throws NoCurrentCaseException if there is no open case.
|
||||||
* @return the relative path of the module output folder
|
* @return the relative path of the module output folder
|
||||||
*/
|
*/
|
||||||
public static String getRelModuleOutputPath() throws NoCurrentCaseException {
|
static String getRelModuleOutputPath() throws NoCurrentCaseException {
|
||||||
return Case.getOpenCase().getModuleOutputDirectoryRelativePath() + File.separator
|
return Case.getOpenCase().getModuleOutputDirectoryRelativePath() + File.separator
|
||||||
+ EmailParserModuleFactory.getModuleName();
|
+ EmailParserModuleFactory.getModuleName();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user