mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-22 23:22:05 +01: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…
Reference in a new issue