Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
81bd16f7
Unverified
Commit
81bd16f7
authored
4 years ago
by
Richard Cordovano
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bindings/java/src/org/sleuthkit/datamodel/OsAccount.java
+1
-11
1 addition, 11 deletions
bindings/java/src/org/sleuthkit/datamodel/OsAccount.java
with
1 addition
and
11 deletions
bindings/java/src/org/sleuthkit/datamodel/OsAccount.java
+
1
−
11
View file @
81bd16f7
...
...
@@ -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.
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment