Skip to content
Snippets Groups Projects
Commit d5cc18ba authored by Richard Cordovano's avatar Richard Cordovano
Browse files

Remove unused OsAccount method

parent 3442589a
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,7 @@ public final class OsAccount extends AbstractContent { ...@@ -46,7 +46,7 @@ public final class OsAccount extends AbstractContent {
private final String loginName; // user login name - may be null private final String loginName; // user login name - may be null
private final String addr; // a unique user sid/uid, may be null private final String addr; // a unique user sid/uid, may be null
private String signature; // This exists only to prevent duplicates. private final String signature; // This exists only to prevent duplicates.
// Together realm_id & signature must be unique for each account. // Together realm_id & signature must be unique for each account.
// It is either addr if addr is defined, // It is either addr if addr is defined,
// or the login_name if login_name is defined. // or the login_name if login_name is defined.
...@@ -380,16 +380,6 @@ public synchronized List<OsAccountInstance> getOsAccountInstances() throws TskCo ...@@ -380,16 +380,6 @@ public synchronized List<OsAccountInstance> getOsAccountInstances() throws TskCo
return Collections.unmodifiableList(osAccountInstances); return Collections.unmodifiableList(osAccountInstances);
} }
/**
* Updates the account signature with unique id or name.
*
* @throws TskCoreException If there is an error updating the account
* signature.
*/
private void updateSignature() throws TskCoreException {
signature = OsAccountManager.getOsAccountSignature(this.addr, this.loginName);
}
/** /**
* Gets the SleuthKit case database for this account. * Gets the SleuthKit case database for this account.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment