mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-04-09 16:42:11 +02:00
Clean up toString() method
This commit is contained in:
parent
9ea9cd22b8
commit
dad75bb522
1 changed files with 1 additions and 1 deletions
|
@ -75,6 +75,6 @@ public class SessionKey {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "" + (int) getAlgorithm() + ':' + HexUtil.bytesToHex(sessionKey);
|
||||
return Integer.toString(getAlgorithm()) + ':' + HexUtil.bytesToHex(sessionKey);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue