Skip to content

Commit

Permalink
AFSocketAddress: make backporting help methods package-private
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlschuetter committed Sep 28, 2023
1 parent ddf1b76 commit 52f739d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ private void writeObject(ObjectOutputStream out) throws IOException {
* @param i The value.
* @return The string.
*/
protected static String toUnsignedString(int i) {
static String toUnsignedString(int i) {
return Long.toString(toUnsignedLong(i));
}

Expand All @@ -930,7 +930,7 @@ protected static String toUnsignedString(int i) {
* @param radix The radix.
* @return The string.
*/
protected static String toUnsignedString(int i, int radix) {
static String toUnsignedString(int i, int radix) {
return Long.toUnsignedString(toUnsignedLong(i), radix);
}

Expand Down

0 comments on commit 52f739d

Please sign in to comment.