Skip to content
Snippets Groups Projects
Unverified Commit 81bd16f7 authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #2301 from rcordovano/remove-unused-OsAccount-method

Remove unused OsAccount method
parents 88f81f32 d5cc18ba
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ public final class OsAccount extends AbstractContent {
private final String loginName; // user login name - 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.
// It is either addr if addr is defined,
// or the login_name if login_name is defined.
......@@ -380,16 +380,6 @@ public synchronized List<OsAccountInstance> getOsAccountInstances() throws TskCo
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.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment