diff --git a/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/ImageGalleryController.java b/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/ImageGalleryController.java index 6ebd87ae79..d20e923f54 100644 --- a/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/ImageGalleryController.java +++ b/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/ImageGalleryController.java @@ -676,7 +676,7 @@ public final class ImageGalleryController { * 'analyzed'. Grabs all files with supported image/video mime types, and * adds them to the Drawable DB */ - class CopyAnalyzedFiles extends InnerTask { + private class CopyAnalyzedFiles extends InnerTask { final private String DRAWABLE_QUERY = "name LIKE '%." + StringUtils.join(ImageGalleryModule.getAllSupportedExtensions(), "' or name LIKE '%.") + "'"; diff --git a/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/actions/AddTagAction.java b/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/actions/AddTagAction.java index a0602f546f..85894cc661 100644 --- a/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/actions/AddTagAction.java +++ b/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/actions/AddTagAction.java @@ -40,16 +40,15 @@ import org.sleuthkit.datamodel.TagName; import org.sleuthkit.datamodel.TskCoreException; /** - * An abstract base class for Actions that allow users to tag SleuthKit data + * An abstract base class for actions that allow users to tag SleuthKit data * model objects. + * + * //TODO: this class started as a cut and paste from + * org.sleuthkit.autopsy.actions.AddTagAction and needs to be + * refactor or reintegrated to the AddTagAction hierarchy of Autopysy. */ abstract class AddTagAction { - /** - * Derived classes should call this method any time a tag is created, - * updated - * or deleted outside of an actionPerformed() call. - */ @SuppressWarnings("deprecation") protected void refreshDirectoryTree() { @@ -63,7 +62,7 @@ abstract class AddTagAction { protected static final String NO_COMMENT = ""; /** - * Template method to allow derived classes to provide a string for for a + * Template method to allow derived classes to provide a string for a * menu item label. */ abstract protected String getActionDisplayName();