From dfcc43d275061a19538f61dd0bec7965429eda6b Mon Sep 17 00:00:00 2001 From: apriestman Date: Thu, 1 Apr 2021 11:31:19 -0400 Subject: [PATCH] Doxygen fixes --- .../contentviewer/OtherOccurrencesPanel.java | 3 +-- .../autopsy/contentviewers/osaccount/SectionData.java | 6 +++--- .../autopsy/datasourcesummary/uiutils/BarChartExport.java | 2 +- .../autopsy/directorytree/DirectoryTreeTopComponent.java | 1 + .../autopsy/integrationtesting/IntegrationTest.java | 2 +- .../org/sleuthkit/autopsy/integrationtesting/PathUtil.java | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/contentviewer/OtherOccurrencesPanel.java b/Core/src/org/sleuthkit/autopsy/centralrepository/contentviewer/OtherOccurrencesPanel.java index 4976b72278..d6588c2313 100644 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/contentviewer/OtherOccurrencesPanel.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/contentviewer/OtherOccurrencesPanel.java @@ -511,8 +511,6 @@ public final class OtherOccurrencesPanel extends javax.swing.JPanel { * from the current case with matching MD5 hashes. * * @param corAttr CorrelationAttribute to query for - * @param dataSourceName Data source to filter results - * @param deviceId Device Id to filter results * * @return A collection of correlated artifact instances */ @@ -618,6 +616,7 @@ public final class OtherOccurrencesPanel extends javax.swing.JPanel { * * @param corAttr The CorrelationAttribute containing the MD5 to search for * @param openCase The current case + * @param file The current file. * * @return List of matching AbstractFile objects * diff --git a/Core/src/org/sleuthkit/autopsy/contentviewers/osaccount/SectionData.java b/Core/src/org/sleuthkit/autopsy/contentviewers/osaccount/SectionData.java index 4674ff0756..afb60251fa 100755 --- a/Core/src/org/sleuthkit/autopsy/contentviewers/osaccount/SectionData.java +++ b/Core/src/org/sleuthkit/autopsy/contentviewers/osaccount/SectionData.java @@ -51,10 +51,10 @@ final class SectionData implements Iterable> } /** - * Add a new property name\property value pair. + * Add a new property name/property value pair. * - * @param key The property display name. - * @param value The property value. + * @param properytName The property display name. + * @param propertyValue The property value. */ void addData(String properytName, String propertyValue) { data.add(new RowData<>(properytName, propertyValue)); diff --git a/Core/src/org/sleuthkit/autopsy/datasourcesummary/uiutils/BarChartExport.java b/Core/src/org/sleuthkit/autopsy/datasourcesummary/uiutils/BarChartExport.java index 8353549e75..15a93092cc 100644 --- a/Core/src/org/sleuthkit/autopsy/datasourcesummary/uiutils/BarChartExport.java +++ b/Core/src/org/sleuthkit/autopsy/datasourcesummary/uiutils/BarChartExport.java @@ -66,7 +66,7 @@ public class BarChartExport implements ExcelItemExportable, ExcelSheetExport { * @param categories The categories with their data. * @param keyColumnHeader The header column name for the table descriptions * (i.e. types: file types / artifact types). - * @param valueFormatString The excel format string to use for values. + * @param chartTitle The title for the chart. * @return An excel table export to be used as the data source for the chart * in the excel document. */ diff --git a/Core/src/org/sleuthkit/autopsy/directorytree/DirectoryTreeTopComponent.java b/Core/src/org/sleuthkit/autopsy/directorytree/DirectoryTreeTopComponent.java index b91be2e694..d2cd291de0 100644 --- a/Core/src/org/sleuthkit/autopsy/directorytree/DirectoryTreeTopComponent.java +++ b/Core/src/org/sleuthkit/autopsy/directorytree/DirectoryTreeTopComponent.java @@ -1116,6 +1116,7 @@ public final class DirectoryTreeTopComponent extends TopComponent implements Dat * DataSourcesByType looking for the Results Node. * * @param node The node. + * @param dataSourceId The data source id. * @return The child nodes that are at the data source level. */ private Node getResultsNodeSearch(Node node, long dataSourceId) { diff --git a/Core/src/org/sleuthkit/autopsy/integrationtesting/IntegrationTest.java b/Core/src/org/sleuthkit/autopsy/integrationtesting/IntegrationTest.java index 5c43568a98..20cd7cca42 100644 --- a/Core/src/org/sleuthkit/autopsy/integrationtesting/IntegrationTest.java +++ b/Core/src/org/sleuthkit/autopsy/integrationtesting/IntegrationTest.java @@ -24,7 +24,7 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * Annotation similar to Junit's @Test for outputing results as a part of an + * Annotation similar to Junit's \@Test for outputting results as a part of an * integration test. */ @Retention(RetentionPolicy.RUNTIME) diff --git a/Core/src/org/sleuthkit/autopsy/integrationtesting/PathUtil.java b/Core/src/org/sleuthkit/autopsy/integrationtesting/PathUtil.java index 16e6ec0094..8d26666ddb 100644 --- a/Core/src/org/sleuthkit/autopsy/integrationtesting/PathUtil.java +++ b/Core/src/org/sleuthkit/autopsy/integrationtesting/PathUtil.java @@ -54,7 +54,7 @@ public final class PathUtil { * each is treated as a relative path using the working directory. * * @param workingDirectory The working directory. - * @param relPath The paths. + * @param relPaths The paths. * @return The list of paths with the workingDirectory prepended if a path * is a relative path. */