[PATCH JGIT] simplify loop with if and do while
From: Yann Simon <hidden>
Date: 2016-06-15 22:46:04
replace if(condition) { do { } while (condition) } by while (condition)
{ }
Signed-off-by: Yann Simon <redacted>
---
.../src/org/spearce/jgit/lib/Repository.java | 18
+++++++-----------
1 files changed, 7 insertions(+), 11 deletions(-)
diff --git a/org.spearce.jgit/src/org/spearce/jgit/lib/Repository.javab/org.spearce.jgit/src/org/spearce/jgit/lib/Repository.java index 038a869..b6efac1 100644
--- a/org.spearce.jgit/src/org/spearce/jgit/lib/Repository.java
+++ b/org.spearce.jgit/src/org/spearce/jgit/lib/Repository.java@@ -247,11 +247,9 @@ public File toFile(final AnyObjectId objectId) { public boolean hasObject(final AnyObjectId objectId) { final PackFile[] packs = packs(); int k = packs.length; - if (k > 0) { - do { - if (packs[--k].hasObject(objectId)) - return true; - } while (k > 0); + while (k > 0) { + if (packs[--k].hasObject(objectId)) + return true; } return toFile(objectId).isFile(); }
@@ -288,12 +286,10 @@ public ObjectLoader openObject(final WindowCursorcurs, final AnyObjectId id)
throws IOException {
final PackFile[] packs = packs();
int k = packs.length;
- if (k > 0) {
- do {
- final ObjectLoader ol = packs[--k].get(curs, id);
- if (ol != null)
- return ol;
- } while (k > 0);
+ while (k > 0) {
+ final ObjectLoader ol = packs[--k].get(curs, id);
+ if (ol != null)
+ return ol;
}
try {
return new UnpackedObjectLoader(this, id);
--
1.6.0.6