From f4708ab2fc93ba547d770b6ef57f4ce8b135547c Mon Sep 17 00:00:00 2001 From: William Schaefer Date: Tue, 27 Aug 2019 14:14:55 -0400 Subject: [PATCH] 5369 minor clean up, update bundle files --- .../sleuthkit/autopsy/filequery/Bundle.properties-MERGED | 6 +++++- .../sleuthkit/autopsy/filequery/VideoThumbnailPanel.java | 4 ++-- .../sleuthkit/autopsy/filequery/VideoThumbnailsWrapper.java | 1 - 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED b/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED index 6c0183c9ca..fb3fcfb571 100644 --- a/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED +++ b/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED @@ -165,5 +165,9 @@ ResultsPanel.invalidPageNumber.title=Invalid Page Number ResultsPanel.pageControlsLabel.text=Pages: ResultsPanel.gotoPageLabel.text=Go to Page: ResultsPanel.pageSizeLabel.text=Page size: -ResultsPanel.instancesList.border.title=Duplicate Files +ResultsPanel.instancesList.border.title=Instances SearchNode.getName.text=Search Result +# {0} - numberOfInstances +VideoThumbnailPanel.countLabel.text=Numbber of Instances: {0} +# {0} - fileSize +VideoThumbnailPanel.sizeLabel.text=Size: {0} bytes diff --git a/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java b/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java index f280fa2eac..e68323f2ee 100644 --- a/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java +++ b/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java @@ -32,7 +32,7 @@ import org.openide.util.NbBundle.Messages; /** * Class which displays thumbnails and information for a video file. */ -public final class VideoThumbnailPanel extends javax.swing.JPanel implements ListCellRenderer { +final class VideoThumbnailPanel extends javax.swing.JPanel implements ListCellRenderer { private static final int GAP_SIZE = 4; private static final Color SELECTION_COLOR = new Color(100, 200, 255); @@ -41,7 +41,7 @@ public final class VideoThumbnailPanel extends javax.swing.JPanel implements Lis /** * Creates new form VideoThumbnailPanel */ - public VideoThumbnailPanel() { + VideoThumbnailPanel() { initComponents(); this.setFocusable(true); } diff --git a/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailsWrapper.java b/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailsWrapper.java index fe37893ab7..aa2b52fb4b 100644 --- a/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailsWrapper.java +++ b/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailsWrapper.java @@ -21,7 +21,6 @@ package org.sleuthkit.autopsy.filequery; import java.awt.Image; import java.util.Collections; import java.util.List; -import org.sleuthkit.datamodel.TskCoreException; /** * Class to wrap all the information necessary for video thumbnails to be