Move array designators from the variable to the type

As reported by Sonar Lint:

Array designators should always be located on the type for better code
readability. Otherwise, developers must look both at the type and the
variable name to know whether or not a variable is an array.

Change-Id: If6b41fed3483d0992d402d8680552ab4bef89ffb
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2020-02-27 20:27:31 +09:00
parent abb461533f
commit 5a6b6eee35
11 changed files with 14 additions and 14 deletions

View File

@ -138,7 +138,7 @@ void service(HttpServletRequest req, HttpServletResponse rsp)
// build a request for them so RegexGroupFilter can pick // build a request for them so RegexGroupFilter can pick
// a different capture group later. Continue using the // a different capture group later. Continue using the
// first capture group as the path info. // first capture group as the path info.
WrappedRequest groups[] = new WrappedRequest[cur.groupCount()]; WrappedRequest[] groups = new WrappedRequest[cur.groupCount()];
for (int groupId = 1; groupId <= cur.groupCount(); groupId++) { for (int groupId = 1; groupId <= cur.groupCount(); groupId++) {
final int s = cur.start(groupId); final int s = cur.start(groupId);
final String path, info; final String path, info;

View File

@ -121,7 +121,7 @@ private KeyPair loadKey(SessionContext session, Path path)
if (cache == null) { if (cache == null) {
return loadKey(session, resource, path, getPasswordFinder()); return loadKey(session, resource, path, getPasswordFinder());
} }
Throwable t[] = { null }; Throwable[] t = { null };
KeyPair key = cache.get(path, p -> { KeyPair key = cache.get(path, p -> {
try { try {
return loadKey(session, resource, p, getPasswordFinder()); return loadKey(session, resource, p, getPasswordFinder());

View File

@ -249,7 +249,7 @@ private static int parseChallenge(AuthenticationChallenge challenge,
start = nextStart + 1; start = nextStart + 1;
} else { } else {
if (header.charAt(nextStart) == '"') { if (header.charAt(nextStart) == '"') {
int nextEnd[] = { nextStart + 1 }; int[] nextEnd = { nextStart + 1 };
String value = scanQuotedString(header, nextStart + 1, String value = scanQuotedString(header, nextStart + 1,
nextEnd); nextEnd);
challenge.addArgument(header.substring(start, end), value); challenge.addArgument(header.substring(start, end), value);

View File

@ -448,7 +448,7 @@ public static RawText load(ObjectLoader ldr, int threshold)
} }
} }
byte data[]; byte[] data;
try { try {
data = new byte[(int)sz]; data = new byte[(int)sz];
} catch (OutOfMemoryError e) { } catch (OutOfMemoryError e) {

View File

@ -674,7 +674,7 @@ public String toString() {
} }
} }
static List<Segment> segmentSizes(long sizes[]) { static List<Segment> segmentSizes(long[] sizes) {
List<Segment> segments = new ArrayList<>(); List<Segment> segments = new ArrayList<>();
Segment cur = new Segment(); Segment cur = new Segment();
for (int i = 0; i < sizes.length; i++) { for (int i = 0; i < sizes.length; i++) {
@ -694,7 +694,7 @@ static List<Segment> segmentSizes(long sizes[]) {
return segments; return segments;
} }
private static Optional<Segment> autoCompactCandidate(long sizes[]) { private static Optional<Segment> autoCompactCandidate(long[] sizes) {
if (sizes.length == 0) { if (sizes.length == 0) {
return Optional.empty(); return Optional.empty();
} }

View File

@ -225,7 +225,7 @@ public static Iterable<PackWriter> getInstances() {
} }
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
BlockList<ObjectToPack> objectsLists[] = new BlockList[OBJ_TAG + 1]; BlockList<ObjectToPack>[] objectsLists = new BlockList[OBJ_TAG + 1];
{ {
objectsLists[OBJ_COMMIT] = new BlockList<>(); objectsLists[OBJ_COMMIT] = new BlockList<>();
objectsLists[OBJ_TREE] = new BlockList<>(); objectsLists[OBJ_TREE] = new BlockList<>();
@ -270,7 +270,7 @@ public static Iterable<PackWriter> getInstances() {
private List<ObjectToPack> sortedByName; private List<ObjectToPack> sortedByName;
private byte packcsum[]; private byte[] packcsum;
private boolean deltaBaseAsOffset; private boolean deltaBaseAsOffset;

View File

@ -143,7 +143,7 @@ public enum MergeFailureReason {
* *
* @since 3.0 * @since 3.0
*/ */
protected String commitNames[]; protected String[] commitNames;
/** /**
* Index of the base tree within the {@link #tw tree walk}. * Index of the base tree within the {@link #tw tree walk}.

View File

@ -2411,12 +2411,12 @@ public void write(int b) throws IOException {
} }
@Override @Override
public void write(byte b[]) throws IOException { public void write(byte[] b) throws IOException {
out.write(b); out.write(b);
} }
@Override @Override
public void write(byte b[], int off, int len) throws IOException { public void write(byte[] b, int off, int len) throws IOException {
out.write(b, off, len); out.write(b, off, len);
} }

View File

@ -2270,7 +2270,7 @@ public void run() {
void copy() throws IOException { void copy() throws IOException {
boolean writeFailure = false; boolean writeFailure = false;
byte buffer[] = new byte[4096]; byte[] buffer = new byte[4096];
int readBytes; int readBytes;
while ((readBytes = in.read(buffer)) != -1) { while ((readBytes = in.read(buffer)) != -1) {
// Do not try to write again after a failure, but keep // Do not try to write again after a failure, but keep

View File

@ -313,7 +313,7 @@ public int read() throws IOException {
} }
@Override @Override
public int read(byte b[], int off, int len) throws IOException { public int read(byte[] b, int off, int len) throws IOException {
return stream.read(b, off, len); return stream.read(b, off, len);
} }

View File

@ -49,7 +49,7 @@ public class Monitoring {
String metricName) { String metricName) {
boolean register = false; boolean register = false;
try { try {
Class<?> interfaces[] = mbean.getClass().getInterfaces(); Class<?>[] interfaces = mbean.getClass().getInterfaces();
for (Class<?> i : interfaces) { for (Class<?> i : interfaces) {
register = SystemReader.getInstance().getUserConfig() register = SystemReader.getInstance().getUserConfig()
.getBoolean( .getBoolean(