From 1dd7ee8cf71c65d5cd45f14fd2efc627eecdb9b7 Mon Sep 17 00:00:00 2001
From: Raman Arora <raman@basistech.com>
Date: Tue, 3 Mar 2020 18:56:53 -0500
Subject: [PATCH] Undo access change to Account constructor.

---
 bindings/java/src/org/sleuthkit/datamodel/Account.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bindings/java/src/org/sleuthkit/datamodel/Account.java b/bindings/java/src/org/sleuthkit/datamodel/Account.java
index 55af667d4..8db44d7d0 100644
--- a/bindings/java/src/org/sleuthkit/datamodel/Account.java
+++ b/bindings/java/src/org/sleuthkit/datamodel/Account.java
@@ -152,7 +152,7 @@ public String toString() {
 		}
 	}
 
-	public Account(long account_id, Account.Type accountType, String typeSpecificId) {
+	Account(long account_id, Account.Type accountType, String typeSpecificId) throws TskCoreException {
 		this.account_id = account_id;
 		this.accountType = accountType;
 		this.typeSpecificID = typeSpecificId;
-- 
GitLab