4792 remove unused bundle properties

This commit is contained in:
William Schaefer 2019-04-05 16:04:45 -04:00
parent 97e9a190f3
commit 68fc9b706e
3 changed files with 5 additions and 29 deletions

View File

@ -7,16 +7,4 @@ DataContentViewerOtherCases.earliestCaseDate.text=Earliest Case Date
DataContentViewerOtherCases.earliestCaseLabel.toolTipText=
DataContentViewerOtherCases.earliestCaseLabel.text=Central Repository Starting Date:
DataContentViewerOtherCases.foundInLabel.text=
OccurrencePanelOld.filePathLabel.text=File Path:
OccurrencePanelOld.valueFieldLabel.text=Value:
OccurrencePanelOld.typeLabel.text=Type:
OccurrencePanelOld.deviceIdLabel.text=Device ID:
OccurrencePanelOld.dataSourceNameLabel.text=Data Source Name:
OccurrencePanelOld.caseCreatedDateLabel.text=Case Created:
OccurrencePanelOld.caseNameLabel.text=Case Name:
OccurrencePanelOld.deviceIdValue.text=
OccurrencePanelOld.dataSourceNameValue.text=
OccurrencePanelOld.jLabel1.text=jLabel1
OccurrencePanelOld.commentLabel.text=Comment:
OccurrencePanelOld.knownStatusLabel.text=Known Status:
DataContentViewerOtherCases.caseDatasourceFileSplitPane.toolTipText=

View File

@ -24,6 +24,7 @@ DataContentViewerOtherCases.earliestCaseDate.text=Earliest Case Date
DataContentViewerOtherCases.earliestCaseLabel.toolTipText=
DataContentViewerOtherCases.earliestCaseLabel.text=Central Repository Starting Date:
DataContentViewerOtherCases.foundInLabel.text=
DataContentViewerOtherCases.caseDatasourceFileSplitPane.toolTipText=
DataContentViewerOtherCases.title=Other Occurrences
DataContentViewerOtherCases.toolTip=Displays instances of the selected file/artifact from other occurrences.
OccurrencePanel.caseCreatedDateLabel.text=Created Date:
@ -38,19 +39,6 @@ OccurrencePanel.dataSourceDetails.text=Data Source Details
OccurrencePanel.dataSourceNameLabel.text=Name:
OccurrencePanel.fileDetails.text=File Details
OccurrencePanel.filePathLabel.text=File Path:
OccurrencePanelOld.filePathLabel.text=File Path:
OccurrencePanelOld.valueFieldLabel.text=Value:
OccurrencePanelOld.typeLabel.text=Type:
OccurrencePanelOld.deviceIdLabel.text=Device ID:
OccurrencePanelOld.dataSourceNameLabel.text=Data Source Name:
OccurrencePanelOld.caseCreatedDateLabel.text=Case Created:
OccurrencePanelOld.caseNameLabel.text=Case Name:
OccurrencePanelOld.deviceIdValue.text=
OccurrencePanelOld.dataSourceNameValue.text=
OccurrencePanelOld.jLabel1.text=jLabel1
OccurrencePanelOld.commentLabel.text=Comment:
OccurrencePanelOld.knownStatusLabel.text=Known Status:
DataContentViewerOtherCases.caseDatasourceFileSplitPane.toolTipText=
OtherOccurrencesCasesTableModel.case=Case
OtherOccurrencesCasesTableModel.noData=No Data.
OtherOccurrencesDataSourcesTableModel.dataSourceName=Data Source Name

View File

@ -1,7 +1,7 @@
/*
* Central Repository
*
* Copyright 2019 Basis Technology Corp.
* Copyright 2017-2019 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
@ -99,12 +99,12 @@ public class DataContentViewerOtherCases extends JPanel implements DataContentVi
private final OtherOccurrencesDataSourcesTableModel dataSourcesTableModel;
private OccurrencePanel occurrencePanel;
private final Collection<CorrelationAttributeInstance> correlationAttributes;
private String dataSourceName = "";
private String deviceId = "";
private String dataSourceName = ""; //the data source of the file which the content viewer is being populated for
private String deviceId = ""; //the device id of the data source for the file which the content viewer is being populated for
/**
* Could be null.
*/
private AbstractFile file;
private AbstractFile file; //the file which the content viewer is being populated for
/**
* Creates new form DataContentViewerOtherCases