Skip to content
Snippets Groups Projects
Unverified Commit 1630cd88 authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #1944 from APriestman/fixDepWarning

Switch to new version of getFileSystems
parents 58c512e3 4ef1b10d
No related branches found
No related tags found
No related merge requests found
......@@ -255,8 +255,8 @@ public List<Volume> getVolumes() throws TskCoreException {
* @throws TskCoreException
*/
public List<FileSystem> getFileSystems() throws TskCoreException {
List<FileSystem> fs = new ArrayList<FileSystem>();
fs.addAll(getSleuthkitCase().getFileSystems(this));
List<FileSystem> fs = new ArrayList<>();
fs.addAll(getSleuthkitCase().getImageFileSystems(this));
return fs;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment