mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
Fixing build errors
This commit is contained in:
parent
1457990e8a
commit
3c1f4e2222
@ -1,2 +1,2 @@
|
||||
javac.source=1.7
|
||||
javac.source=1.8
|
||||
javac.compilerargs=-Xlint -Xlint:-serial
|
||||
|
@ -6,6 +6,22 @@
|
||||
<code-name-base>org.sleuthkit.autopsy.experimental</code-name-base>
|
||||
<suite-component/>
|
||||
<module-dependencies>
|
||||
<dependency>
|
||||
<code-name-base>org.openide.util</code-name-base>
|
||||
<build-prerequisite/>
|
||||
<compile-dependency/>
|
||||
<run-dependency>
|
||||
<specification-version>9.5.1</specification-version>
|
||||
</run-dependency>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<code-name-base>org.openide.util.ui</code-name-base>
|
||||
<build-prerequisite/>
|
||||
<compile-dependency/>
|
||||
<run-dependency>
|
||||
<specification-version>9.4.1</specification-version>
|
||||
</run-dependency>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<code-name-base>org.sleuthkit.autopsy.core</code-name-base>
|
||||
<build-prerequisite/>
|
||||
|
@ -232,7 +232,7 @@ class AutoIngestJob implements Comparable<AutoIngestJob> {
|
||||
* ingest manager.
|
||||
* @param nodeName Name of the node that is processing the job
|
||||
*/
|
||||
AutoIngestJob(Path imageFolderPath, String caseName, Path caseFolderName, AutoIngestManager.JobIngestStatus ingestStatus, String nodeName) {
|
||||
AutoIngestJob(Path imageFolderPath, String caseName, Path caseFolderName, /* //ELTODO AutoIngestManager.*/JobIngestStatus ingestStatus, String nodeName) {
|
||||
this.caseName = caseName;
|
||||
this.imageFolderPath = imageFolderPath;
|
||||
this.caseFolderName = caseFolderName;
|
||||
@ -293,7 +293,8 @@ class AutoIngestJob implements Comparable<AutoIngestJob> {
|
||||
return ingestStatus.getStatus();
|
||||
}
|
||||
|
||||
AutoIngestManager.JobIngestStatus getIngestStatus() {
|
||||
// ELTODO AutoIngestManager.JobIngestStatus getIngestStatus() {
|
||||
JobIngestStatus getIngestStatus() {
|
||||
return ingestStatus;
|
||||
}
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
||||
* Copyright (c) 2013-2015 Basis Technology Corporation.
|
||||
* Contact: brianc@basistech.com
|
||||
*/
|
||||
package viking.autoingest;
|
||||
package org.sleuthkit.autopsy.autoingest;
|
||||
|
||||
import java.awt.Component;
|
||||
import java.time.Duration;
|
||||
|
Loading…
x
Reference in New Issue
Block a user