Remove trailing white spaces

This commit is contained in:
Benedikt Ritter 2017-03-27 20:15:36 +02:00
parent 54c3daaf17
commit b06f13ff0e
2 changed files with 73 additions and 80 deletions

View File

@ -8098,7 +8098,6 @@ public static boolean[] insert(final int index, final boolean[] array, final boo
return result;
}
/**
* <p>Inserts elements into an array at the given index (starting from zero).</p>
*
@ -8141,7 +8140,6 @@ public static byte[] insert(final int index, final byte[] array, final byte... v
return result;
}
/**
* <p>Inserts elements into an array at the given index (starting from zero).</p>
*
@ -8184,7 +8182,6 @@ public static char[] insert(final int index, final char[] array, final char... v
return result;
}
/**
* <p>Inserts elements into an array at the given index (starting from zero).</p>
*
@ -8227,7 +8224,6 @@ public static double[] insert(final int index, final double[] array, final doubl
return result;
}
/**
* <p>Inserts elements into an array at the given index (starting from zero).</p>
*
@ -8354,7 +8350,6 @@ public static long[] insert(final int index, final long[] array, final long... v
return result;
}
/**
* <p>Inserts elements into an array at the given index (starting from zero).</p>
*
@ -8397,7 +8392,6 @@ public static short[] insert(final int index, final short[] array, final short..
return result;
}
/**
* <p>Inserts elements into an array at the given index (starting from zero).</p>
*

View File

@ -9138,7 +9138,6 @@ public static String unwrap(final String str, final char wrapChar) {
return str;
}
/**
* <p>Converts a {@code CharSequence} into an array of code points.</p>
*