mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
Final format checking
This commit is contained in:
parent
e842001237
commit
2ccf455568
@ -382,7 +382,8 @@ class OtherOccurrenceUtilities {
|
|||||||
*
|
*
|
||||||
* @param destFile Output file for the csv data.
|
* @param destFile Output file for the csv data.
|
||||||
* @param abstractFile Source file.
|
* @param abstractFile Source file.
|
||||||
* @param correlationAttList List of correclationAttributeInstances, should not be null.
|
* @param correlationAttList List of correclationAttributeInstances, should
|
||||||
|
* not be null.
|
||||||
* @param dataSourceName Name of the data source.
|
* @param dataSourceName Name of the data source.
|
||||||
* @param deviceId Device id.
|
* @param deviceId Device id.
|
||||||
*
|
*
|
||||||
|
@ -174,7 +174,7 @@ public final class OtherOccurrencesPanel extends javax.swing.JPanel {
|
|||||||
*/
|
*/
|
||||||
private void showCommonalityDetails() {
|
private void showCommonalityDetails() {
|
||||||
if (correlationAttributes.isEmpty()) {
|
if (correlationAttributes.isEmpty()) {
|
||||||
JOptionPane.showConfirmDialog(showCommonalityMenuItem,
|
JOptionPane.showConfirmDialog(OtherOccurrencesPanel.this,
|
||||||
Bundle.OtherOccurrencesPanel_correlatedArtifacts_isEmpty(),
|
Bundle.OtherOccurrencesPanel_correlatedArtifacts_isEmpty(),
|
||||||
Bundle.OtherOccurrencesPanel_correlatedArtifacts_title(),
|
Bundle.OtherOccurrencesPanel_correlatedArtifacts_title(),
|
||||||
DEFAULT_OPTION, PLAIN_MESSAGE);
|
DEFAULT_OPTION, PLAIN_MESSAGE);
|
||||||
@ -196,14 +196,14 @@ public final class OtherOccurrencesPanel extends javax.swing.JPanel {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
|
this.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
|
||||||
JOptionPane.showConfirmDialog(showCommonalityMenuItem,
|
JOptionPane.showConfirmDialog(OtherOccurrencesPanel.this,
|
||||||
msg.toString(),
|
msg.toString(),
|
||||||
Bundle.OtherOccurrencesPanel_correlatedArtifacts_title(),
|
Bundle.OtherOccurrencesPanel_correlatedArtifacts_title(),
|
||||||
DEFAULT_OPTION, PLAIN_MESSAGE);
|
DEFAULT_OPTION, PLAIN_MESSAGE);
|
||||||
} catch (CentralRepoException ex) {
|
} catch (CentralRepoException ex) {
|
||||||
this.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
|
this.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
|
||||||
logger.log(Level.SEVERE, "Error getting commonality details.", ex);
|
logger.log(Level.SEVERE, "Error getting commonality details.", ex);
|
||||||
JOptionPane.showConfirmDialog(showCommonalityMenuItem,
|
JOptionPane.showConfirmDialog(OtherOccurrencesPanel.this,
|
||||||
Bundle.OtherOccurrencesPanel_correlatedArtifacts_failed(),
|
Bundle.OtherOccurrencesPanel_correlatedArtifacts_failed(),
|
||||||
Bundle.OtherOccurrencesPanel_correlatedArtifacts_title(),
|
Bundle.OtherOccurrencesPanel_correlatedArtifacts_title(),
|
||||||
DEFAULT_OPTION, ERROR_MESSAGE);
|
DEFAULT_OPTION, ERROR_MESSAGE);
|
||||||
@ -245,7 +245,7 @@ public final class OtherOccurrencesPanel extends javax.swing.JPanel {
|
|||||||
} catch (CentralRepoException ex) {
|
} catch (CentralRepoException ex) {
|
||||||
logger.log(Level.SEVERE, "Error loading case details", ex);
|
logger.log(Level.SEVERE, "Error loading case details", ex);
|
||||||
} finally {
|
} finally {
|
||||||
JOptionPane.showConfirmDialog(showCaseDetailsMenuItem,
|
JOptionPane.showConfirmDialog(OtherOccurrencesPanel.this,
|
||||||
details,
|
details,
|
||||||
caseDisplayName,
|
caseDisplayName,
|
||||||
DEFAULT_OPTION, PLAIN_MESSAGE);
|
DEFAULT_OPTION, PLAIN_MESSAGE);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user