8269665: Clean-up toString() methods of some primitive wrappers

Reviewed-by: redestad
This commit is contained in:
Sergey Tsypanov 2021-08-02 12:46:00 +00:00 committed by Claes Redestad
parent 7cc1eb3e57
commit 72145f3b94
4 changed files with 13 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 1994, 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1994, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -205,7 +205,7 @@ public final class Boolean implements java.io.Serializable,
* @since 1.4
*/
public static String toString(boolean b) {
return b ? "true" : "false";
return String.valueOf(b);
}
/**
@ -216,8 +216,9 @@ public final class Boolean implements java.io.Serializable,
*
* @return a string representation of this object.
*/
@Override
public String toString() {
return value ? "true" : "false";
return String.valueOf(value);
}
/**

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -90,7 +90,7 @@ public final class Byte extends Number implements Comparable<Byte>, Constable {
* @see java.lang.Integer#toString(int)
*/
public static String toString(byte b) {
return Integer.toString((int)b, 10);
return Integer.toString(b);
}
/**
@ -436,8 +436,9 @@ public final class Byte extends Number implements Comparable<Byte>, Constable {
* @return a string representation of the value of this object in
* base&nbsp;10.
*/
@Override
public String toString() {
return Integer.toString((int)value);
return Integer.toString(value);
}
/**

View File

@ -8657,6 +8657,7 @@ class Character implements java.io.Serializable, Comparable<Character>, Constabl
*
* @return a string representation of this object.
*/
@Override
public String toString() {
return String.valueOf(value);
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -89,7 +89,7 @@ public final class Short extends Number implements Comparable<Short>, Constable
* @see java.lang.Integer#toString(int)
*/
public static String toString(short s) {
return Integer.toString((int)s, 10);
return Integer.toString(s);
}
/**
@ -441,8 +441,9 @@ public final class Short extends Number implements Comparable<Short>, Constable
* @return a string representation of the value of this object in
* base&nbsp;10.
*/
@Override
public String toString() {
return Integer.toString((int)value);
return Integer.toString(value);
}
/**