6715 fix codacy issues update merged properties file

This commit is contained in:
William Schaefer 2020-09-16 09:54:31 -04:00
parent 82a1126a3f
commit f4a24501c5
5 changed files with 9 additions and 5 deletions

View File

@ -953,7 +953,7 @@ public class DiscoveryKeyUtils {
MostRecentActivityDateGroupKey(Result result) { MostRecentActivityDateGroupKey(Result result) {
if (result instanceof ResultDomain) { if (result instanceof ResultDomain) {
epochDate = ((ResultDomain) result).getActivityEnd(); epochDate = ((ResultDomain) result).getActivityEnd();
dateNameString = new SimpleDateFormat("yyyy/MM/dd").format(new Date(TimeUnit.SECONDS.toMillis(epochDate))); dateNameString = new SimpleDateFormat("yyyy/MM/dd", Locale.getDefault()).format(new Date(TimeUnit.SECONDS.toMillis(epochDate)));
} else { } else {
epochDate = Long.MAX_VALUE; epochDate = Long.MAX_VALUE;
dateNameString = Bundle.DiscoveryKeyUtils_MostRecentActivityDateGroupKey_noDate(); dateNameString = Bundle.DiscoveryKeyUtils_MostRecentActivityDateGroupKey_noDate();

View File

@ -1,3 +1,4 @@
ArtifactTypeFilterPanel.selectionNeeded.text=At least one Result type must be selected.
CTL_OpenDiscoveryAction=Discovery CTL_OpenDiscoveryAction=Discovery
# {0} - dataSourceName # {0} - dataSourceName
DataSourceModuleWrapper.exifModule.text=Exif Parser module was not run on data source: {0}\n DataSourceModuleWrapper.exifModule.text=Exif Parser module was not run on data source: {0}\n
@ -7,6 +8,8 @@ DataSourceModuleWrapper.fileTypeModule.text=File Type Identification module was
DataSourceModuleWrapper.hashModule.text=Hash Lookup module was not run on data source: {0}\n DataSourceModuleWrapper.hashModule.text=Hash Lookup module was not run on data source: {0}\n
# {0} - timeZone # {0} - timeZone
DateFilterPanel.dateRange.text=Date Range ({0}): DateFilterPanel.dateRange.text=Date Range ({0}):
DateFilterPanel.invalidRange.text=Range or Only Last must be selected
DateFilterPanel.startOrEndNeeded.text=A start or end date must be specified to use the range filter
DiscoveryDialog.name.text=Discovery DiscoveryDialog.name.text=Discovery
DiscoveryTopComponent.cancelButton.text=Cancel Search DiscoveryTopComponent.cancelButton.text=Cancel Search
DiscoveryTopComponent.name=\ Discovery DiscoveryTopComponent.name=\ Discovery

View File

@ -24,6 +24,7 @@ import java.awt.Point;
import java.awt.event.MouseEvent; import java.awt.event.MouseEvent;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.Date; import java.util.Date;
import java.util.Locale;
import javax.swing.ImageIcon; import javax.swing.ImageIcon;
import javax.swing.JComponent; import javax.swing.JComponent;
import javax.swing.JList; import javax.swing.JList;
@ -38,8 +39,7 @@ class DomainSummaryPanel extends javax.swing.JPanel implements ListCellRenderer<
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private static final Color SELECTION_COLOR = new Color(0, 120, 215); private static final Color SELECTION_COLOR = new Color(0, 120, 215);
private static final int MAX_NAME_STRING = 90; private static final SimpleDateFormat dateFormat = new SimpleDateFormat("MMM dd yyyy", Locale.getDefault());
private static final SimpleDateFormat dateFormat = new SimpleDateFormat("MMM dd yyyy");
/** /**
* Creates new form DomainPanel. * Creates new form DomainPanel.

View File

@ -39,6 +39,8 @@
</Properties> </Properties>
<AuxValues> <AuxValues>
<AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="&lt;DomainWrapper&gt;"/> <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="&lt;DomainWrapper&gt;"/>
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
<AuxValue name="JavaCodeGenerator_VariableModifier" type="java.lang.Integer" value="0"/>
</AuxValues> </AuxValues>
</Component> </Component>
</SubComponents> </SubComponents>

View File

@ -56,7 +56,7 @@ public class DomainSummaryViewer extends javax.swing.JPanel {
private void initComponents() { private void initComponents() {
domainScrollPane = new javax.swing.JScrollPane(); domainScrollPane = new javax.swing.JScrollPane();
domainList = new javax.swing.JList<>(); javax.swing.JList<DomainWrapper> domainList = new javax.swing.JList<>();
setLayout(new java.awt.BorderLayout()); setLayout(new java.awt.BorderLayout());
@ -69,7 +69,6 @@ public class DomainSummaryViewer extends javax.swing.JPanel {
// Variables declaration - do not modify//GEN-BEGIN:variables // Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JList<DomainWrapper> domainList;
private javax.swing.JScrollPane domainScrollPane; private javax.swing.JScrollPane domainScrollPane;
// End of variables declaration//GEN-END:variables // End of variables declaration//GEN-END:variables