Remove superfluous parens.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1199882 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2268ee6052
commit
1c74cc0565
|
@ -1018,7 +1018,7 @@ public class StrBuilder implements CharSequence, Appendable {
|
||||||
*/
|
*/
|
||||||
public StrBuilder appendWithSeparators(Object[] array, String separator) {
|
public StrBuilder appendWithSeparators(Object[] array, String separator) {
|
||||||
if (array != null && array.length > 0) {
|
if (array != null && array.length > 0) {
|
||||||
separator = (separator == null ? "" : separator);
|
separator = separator == null ? "" : separator;
|
||||||
append(array[0]);
|
append(array[0]);
|
||||||
for (int i = 1; i < array.length; i++) {
|
for (int i = 1; i < array.length; i++) {
|
||||||
append(separator);
|
append(separator);
|
||||||
|
@ -1040,7 +1040,7 @@ public class StrBuilder implements CharSequence, Appendable {
|
||||||
*/
|
*/
|
||||||
public StrBuilder appendWithSeparators(Iterable<?> iterable, String separator) {
|
public StrBuilder appendWithSeparators(Iterable<?> iterable, String separator) {
|
||||||
if (iterable != null) {
|
if (iterable != null) {
|
||||||
separator = (separator == null ? "" : separator);
|
separator = separator == null ? "" : separator;
|
||||||
Iterator<?> it = iterable.iterator();
|
Iterator<?> it = iterable.iterator();
|
||||||
while (it.hasNext()) {
|
while (it.hasNext()) {
|
||||||
append(it.next());
|
append(it.next());
|
||||||
|
@ -1064,7 +1064,7 @@ public class StrBuilder implements CharSequence, Appendable {
|
||||||
*/
|
*/
|
||||||
public StrBuilder appendWithSeparators(Iterator<?> it, String separator) {
|
public StrBuilder appendWithSeparators(Iterator<?> it, String separator) {
|
||||||
if (it != null) {
|
if (it != null) {
|
||||||
separator = (separator == null ? "" : separator);
|
separator = separator == null ? "" : separator;
|
||||||
while (it.hasNext()) {
|
while (it.hasNext()) {
|
||||||
append(it.next());
|
append(it.next());
|
||||||
if (it.hasNext()) {
|
if (it.hasNext()) {
|
||||||
|
|
Loading…
Reference in New Issue