Skip to content

Commit

Permalink
Add javadoc for getUserId
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMarxIBM committed May 3, 2024
1 parent 8d4f20c commit e6f9632
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1839,6 +1839,11 @@ public static VirtualMachine attach(String processId, int timeout, Dispatcher di
}
}

/**
* Returns the userUid present in the virtualMachine properties file
* @param virtualMachine Properties of the J9 attachInfo file
* @return the userUid if it can be parsed, <code>0L</code> otherwise.
*/
private static long getUserId(Properties virtualMachine) {
long targetUserId;
try {
Expand Down

0 comments on commit e6f9632

Please sign in to comment.