Browse Source

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>
stable-5.8
Lars Vogel 4 years ago
parent
commit
512ffc9e7f
  1. 3
      org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseCommand.java
  2. 4
      org.eclipse.jgit/src/org/eclipse/jgit/fnmatch/FileNameMatcher.java
  3. 4
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/DeltaIndex.java
  4. 4
      org.eclipse.jgit/src/org/eclipse/jgit/revwalk/filter/PatternMatchRevFilter.java
  5. 3
      org.eclipse.jgit/src/org/eclipse/jgit/transport/HttpAuthMethod.java
  6. 4
      org.eclipse.jgit/src/org/eclipse/jgit/transport/URIish.java
  7. 4
      org.eclipse.jgit/src/org/eclipse/jgit/util/QuotedString.java
  8. 4
      org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java

3
org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseCommand.java

@ -338,8 +338,7 @@ public class RebaseCommand extends GitCommand<RebaseResult> {
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) {

4
org.eclipse.jgit/src/org/eclipse/jgit/fnmatch/FileNameMatcher.java

@ -380,8 +380,8 @@ public class FileNameMatcher {
* @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;
}
}

4
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/DeltaIndex.java

@ -122,8 +122,8 @@ public class DeltaIndex {
// 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;

4
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/filter/PatternMatchRevFilter.java

@ -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();
}

3
org.eclipse.jgit/src/org/eclipse/jgit/transport/HttpAuthMethod.java

@ -423,8 +423,7 @@ abstract class HttpAuthMethod {
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]);
}

4
org.eclipse.jgit/src/org/eclipse/jgit/transport/URIish.java

@ -303,8 +303,8 @@ public class URIish implements Serializable {
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('%');

4
org.eclipse.jgit/src/org/eclipse/jgit/util/QuotedString.java

@ -243,8 +243,8 @@ public abstract class QuotedString {
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) {

4
org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java

@ -559,8 +559,8 @@ public final class RawParseUtils {
}
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;
}

Loading…
Cancel
Save