From f184c5a204330aa93c4119c8f659ce5bbb8ff7e8 Mon Sep 17 00:00:00 2001
From: Ann Priestman <apriestman@basistech.com>
Date: Tue, 23 Jan 2018 10:44:29 -0500
Subject: [PATCH] Update version number, no longer export private
 classes/methods/etc. Also removed comment block from commented out method to
 prevent doxygen warning.

---
 bindings/java/doxygen/Doxyfile                        |  6 +++---
 .../sleuthkit/datamodel/CommunicationsManager.java    | 11 +----------
 2 files changed, 4 insertions(+), 13 deletions(-)

diff --git a/bindings/java/doxygen/Doxyfile b/bindings/java/doxygen/Doxyfile
index 465408c5b..2fd089dd4 100644
--- a/bindings/java/doxygen/Doxyfile
+++ b/bindings/java/doxygen/Doxyfile
@@ -38,7 +38,7 @@ PROJECT_NAME           = "Sleuth Kit Java Bindings (JNI)"
 # could be handy for archiving the generated documentation or if some version
 # control system is used.
 
-PROJECT_NUMBER         = 4.5.0 
+PROJECT_NUMBER         = 4.6.0 
 
 # Using the PROJECT_BRIEF tag one can provide an optional one line description
 # for a project that appears at the top of each page and should give viewer a
@@ -415,7 +415,7 @@ EXTRACT_ALL            = YES
 # be included in the documentation.
 # The default value is: NO.
 
-EXTRACT_PRIVATE        = YES
+EXTRACT_PRIVATE        = NO
 
 # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
 # scope will be included in the documentation.
@@ -1046,7 +1046,7 @@ GENERATE_HTML          = YES
 # The default directory is: html.
 # This tag requires that the tag GENERATE_HTML is set to YES.
 
-HTML_OUTPUT            = jni-docs/4.5.0/
+HTML_OUTPUT            = jni-docs/4.6.0/
 
 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
 # generated HTML page (for example: .htm, .php, .asp).
diff --git a/bindings/java/src/org/sleuthkit/datamodel/CommunicationsManager.java b/bindings/java/src/org/sleuthkit/datamodel/CommunicationsManager.java
index 5130d6331..0f079e8da 100644
--- a/bindings/java/src/org/sleuthkit/datamodel/CommunicationsManager.java
+++ b/bindings/java/src/org/sleuthkit/datamodel/CommunicationsManager.java
@@ -318,16 +318,6 @@ public Account getAccount(Account.Type accountType, String accountUniqueID) thro
 		return account;
 	}
 
-	/**
-	 * Returns an account instance for the given account instance artifact
-	 *
-	 * @param artifact
-	 *
-	 * @return Account
-	 *
-	 * @throws org.sleuthkit.datamodel.TskCoreException
-	 *
-	 */
 //	public AccountFileInstance getAccountFileInstance(BlackboardArtifact artifact) throws TskCoreException {
 //		AccountFileInstance accountInstance = null;
 //		if (artifact.getArtifactTypeID() == BlackboardArtifact.ARTIFACT_TYPE.TSK_ACCOUNT.getTypeID()) {
@@ -343,6 +333,7 @@ public Account getAccount(Account.Type accountType, String accountUniqueID) thro
 //
 //		return accountInstance;
 //	}
+	
 	/**
 	 * Add relationships between the sender and recipient account instances. All
 	 * accounts the relationship must be from the same data source.
-- 
GitLab