Using for-each loop in jdt

Running the JDT cleanup action for using a for-each loop on jgit

Change-Id: Ie724d8bbdff786ab0167089e90a9914a8135103c
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
This commit is contained in:
Lars Vogel 2020-02-27 11:05:23 +01:00
parent 6586c171b3
commit 512ffc9e7f
8 changed files with 14 additions and 16 deletions

View File

@ -338,8 +338,7 @@ public RebaseResult call() throws GitAPIException, NoHeadException,
steps, false);
}
checkSteps(steps);
for (int i = 0; i < steps.size(); i++) {
RebaseTodoLine step = steps.get(i);
for (RebaseTodoLine step : steps) {
popSteps(1);
RebaseResult result = processStep(step, true);
if (result != null) {

View File

@ -380,8 +380,8 @@ public boolean isMatch() {
* @return a boolean.
*/
public boolean canAppendMatch() {
for (int i = 0; i < heads.size(); i++) {
if (heads.get(i) != LastHead.INSTANCE) {
for (Head head : heads) {
if (head != LastHead.INSTANCE) {
return true;
}
}

View File

@ -122,8 +122,8 @@ private int countEntries(DeltaIndexScanner scan) {
// logic linear in the size of the input rather than quadratic.
//
int cnt = 0;
for (int i = 0; i < table.length; i++) {
int h = table[i];
for (int element : table) {
int h = element;
if (h == 0)
continue;

View File

@ -42,8 +42,8 @@ public abstract class PatternMatchRevFilter extends RevFilter {
protected static final String forceToRaw(String patternText) {
final byte[] b = Constants.encode(patternText);
final StringBuilder needle = new StringBuilder(b.length);
for (int i = 0; i < b.length; i++)
needle.append((char) (b[i] & 0xff));
for (byte element : b)
needle.append((char) (element & 0xff));
return needle.toString();
}

View File

@ -423,8 +423,7 @@ private static MessageDigest newMD5() {
private static String LHEX(byte[] bin) {
StringBuilder r = new StringBuilder(bin.length * 2);
for (int i = 0; i < bin.length; i++) {
byte b = bin[i];
for (byte b : bin) {
r.append(LHEX[(b >>> 4) & 0x0f]);
r.append(LHEX[b & 0x0f]);
}

View File

@ -303,8 +303,8 @@ private static String escape(String s, boolean escapeReservedChars,
return null;
ByteArrayOutputStream os = new ByteArrayOutputStream(s.length());
byte[] bytes = s.getBytes(UTF_8);
for (int i = 0; i < bytes.length; ++i) {
int b = bytes[i] & 0xFF;
for (byte c : bytes) {
int b = c & 0xFF;
if (b <= 32 || (encodeNonAscii && b > 127) || b == '%'
|| (escapeReservedChars && reservedChars.get(b))) {
os.write('%');

View File

@ -243,8 +243,8 @@ public String quote(String instr) {
final byte[] out = new byte[4 * in.length + 2];
int o = 0;
out[o++] = '"';
for (int i = 0; i < in.length; i++) {
final int c = in[i] & 0xff;
for (byte element : in) {
final int c = element & 0xff;
if (c < quote.length) {
final byte style = quote[c];
if (style == 0) {

View File

@ -559,8 +559,8 @@ public static final int headerStart(byte[] headerName, byte[] b, int ptr) {
}
while (ptr < b.length - (headerName.length + 1)) {
boolean found = true;
for (int i = 0; i < headerName.length; i++) {
if (headerName[i] != b[ptr++]) {
for (byte element : headerName) {
if (element != b[ptr++]) {
found = false;
break;
}