From f45fd37189af24bced378197a63f43c33074f7ea Mon Sep 17 00:00:00 2001 From: Kelly Kelly <kelly@basistech.com> Date: Wed, 10 Nov 2021 14:33:07 -0500 Subject: [PATCH] Fixed bug --- .../sleuthkit/autopsy/mainui/datamodel/FileSystemRowDTO.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/mainui/datamodel/FileSystemRowDTO.java b/Core/src/org/sleuthkit/autopsy/mainui/datamodel/FileSystemRowDTO.java index b73b36117e..42559ad762 100755 --- a/Core/src/org/sleuthkit/autopsy/mainui/datamodel/FileSystemRowDTO.java +++ b/Core/src/org/sleuthkit/autopsy/mainui/datamodel/FileSystemRowDTO.java @@ -31,7 +31,7 @@ /* * A base class for FileSystem table row DTOs. */ -abstract class FileSystemRowDTO<T extends Content> extends BaseRowDTO { +public abstract class FileSystemRowDTO<T extends Content> extends BaseRowDTO { private final T content; -- GitLab