Enable and fix "Statement unnecessarily nested within else clause" warnings

Since [1] the gerrit project includes jgit as a submodule, and has this
warning enabled, resulting in 100s of warnings in the console.

Also enable the warning here, and fix them.

At the same time, add missing braces around adjacent and nearby one-line
blocks.

[1] https://gerrit-review.googlesource.com/c/gerrit/+/227897

Change-Id: I81df3fc7ed6eedf6874ce1a3bedfa727a1897e4c
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2019-10-17 09:01:25 +09:00
parent 762f6212b4
commit 98cdca9b5a
122 changed files with 672 additions and 751 deletions

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -86,9 +86,9 @@ public void with(HttpServlet servlet) {
* @return the configured servlet, or singleton returning 404 if none.
*/
protected HttpServlet getServlet() {
if (httpServlet != null)
if (httpServlet != null) {
return httpServlet;
else
}
return new ErrorServlet(HttpServletResponse.SC_NOT_FOUND);
}

View File

@ -83,8 +83,7 @@ public UploadPack create(HttpServletRequest req, Repository db)
up.setExtraParameters(Arrays.asList(params));
}
return up;
} else {
}
throw new ServiceNotEnabledException();
}
}
}

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -331,9 +331,8 @@ private String local(String url, boolean toLocal) {
String fragment = u.getRawFragment();
if (fragment != null) {
return u.getRawPath() + '#' + fragment;
} else {
return u.getRawPath();
}
return u.getRawPath();
} catch (URISyntaxException e) {
return url;
}

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -308,9 +308,9 @@ protected void doStart() throws Exception {
@Override
protected String[] loadRoleInfo(UserPrincipal user) {
if (users.get(user.getName()) == null)
if (users.get(user.getName()) == null) {
return null;
else
}
return new String[] { role };
}

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -103,7 +103,7 @@ org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentType=warning
org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentTypeStrict=disabled
org.eclipse.jdt.core.compiler.problem.unlikelyEqualsArgumentType=info
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unstableAutoModuleName=warning

View File

@ -782,9 +782,8 @@ public RevCommit cherryPick(AnyObjectId id) throws Exception {
}
update(Constants.HEAD, result);
return pool.parseCommit(result);
} else {
throw new IOException("Merge conflict");
}
throw new IOException("Merge conflict");
}
/**

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -110,9 +110,8 @@ public long getSize(AnyLongObjectId id) throws IOException {
Path p = getPath(id);
if (Files.exists(p)) {
return Files.size(p);
} else {
return -1;
}
return -1;
}
/**

View File

@ -352,9 +352,8 @@ private static String canonicalizeResourcePath(URL endpoint) {
String encodedPath = urlEncode(path, true);
if (encodedPath.startsWith("/")) { //$NON-NLS-1$
return encodedPath;
} else {
return "/" + encodedPath; //$NON-NLS-1$
}
return "/" + encodedPath; //$NON-NLS-1$
}
private static byte[] hash(String s) {

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -83,9 +83,8 @@ public ObjectLoader applySmudgeFilter(Repository db, ObjectLoader loader,
Attribute attribute) throws IOException {
if (isEnabled(db) && (attribute == null || isEnabled(db, attribute))) {
return LfsBlobFilter.smudgeLfsBlob(db, loader);
} else {
return loader;
}
return loader;
}
@Override
@ -93,9 +92,8 @@ public LfsInputStream applyCleanFilter(Repository db, InputStream input,
long length, Attribute attribute) throws IOException {
if (isEnabled(db, attribute)) {
return new LfsInputStream(LfsBlobFilter.cleanLfsBlob(db, input));
} else {
return new LfsInputStream(input, length);
}
return new LfsInputStream(input, length);
}
@Override

View File

@ -138,7 +138,7 @@ public int run() throws IOException {
aOut.write(buf, 0, length);
size += length;
return length;
} else {
}
aOut.close();
AnyLongObjectId loid = aOut.getId();
aOut = null;
@ -147,9 +147,8 @@ public int run() throws IOException {
long fsSize = Files.size(mediaFile);
if (fsSize != size) {
throw new CorruptMediaFile(mediaFile, size, fsSize);
} else {
FileUtils.delete(tmpFile.toFile());
}
FileUtils.delete(tmpFile.toFile());
} else {
Path parent = mediaFile.getParent();
if (parent != null) {
@ -163,7 +162,6 @@ public int run() throws IOException {
in.close();
out.close();
return -1;
}
} catch (IOException e) {
if (aOut != null) {
aOut.abort();

View File

@ -179,9 +179,8 @@ private static String discoverLfsUrl(Repository db, String purpose,
remoteUrl, u);
additionalHeaders.putAll(action.header);
return action.href;
} else {
return remoteUrl + Protocol.INFO_LFS_ENDPOINT;
}
return remoteUrl + Protocol.INFO_LFS_ENDPOINT;
}
private static Protocol.ExpiringAction getSshAuthentication(
@ -262,9 +261,8 @@ private static String extractProjectName(URIish u) {
if (path.endsWith(org.eclipse.jgit.lib.Constants.DOT_GIT)) {
return path.substring(0, path.length() - 4);
} else {
return path;
}
return path;
}
/**

View File

@ -303,9 +303,9 @@ public final boolean equals(AnyLongObjectId other) {
/** {@inheritDoc} */
@Override
public final boolean equals(Object o) {
if (o instanceof AnyLongObjectId)
if (o instanceof AnyLongObjectId) {
return equals((AnyLongObjectId) o);
else
}
return false;
}

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -136,19 +136,16 @@ private boolean get(CredentialItem.StringType item) {
if (v != null) {
item.setValue(new String(v));
return true;
} else {
}
return false;
}
} else {
String v = cons.readLine("%s: ", item.getPromptText()); //$NON-NLS-1$
if (v != null) {
item.setValue(v);
return true;
} else {
}
return false;
}
}
}
private boolean get(CredentialItem.CharArrayType item) {
if (item.isValueSecure()) {
@ -156,19 +153,16 @@ private boolean get(CredentialItem.CharArrayType item) {
if (v != null) {
item.setValueNoCopy(v);
return true;
} else {
}
return false;
}
} else {
String v = cons.readLine("%s: ", item.getPromptText()); //$NON-NLS-1$
if (v != null) {
item.setValueNoCopy(v.toCharArray());
return true;
} else {
}
return false;
}
}
}
private boolean get(CredentialItem.InformationalMessage item) {
cons.printf("%s\n", item.getPromptText()); //$NON-NLS-1$
@ -182,8 +176,7 @@ private boolean get(CredentialItem.YesNoType item) {
if (r != null) {
item.setValue(CLIText.get().answerYes.equalsIgnoreCase(r));
return true;
} else {
}
return false;
}
}
}

View File

@ -306,7 +306,7 @@ protected int printList(Collection<String> list) throws IOException {
}
outw.flush();
return list.size();
} else
}
return 0;
}

View File

@ -189,9 +189,8 @@ private void recreateCommitGraph() throws IOException {
// rewritten.
queue.add(t);
continue REWRITE;
} else {
newParents[k] = p.newId;
}
newParents[k] = p.newId;
} else {
// We have the old parent object. Use it.
//

View File

@ -138,9 +138,8 @@ protected int hashRegion(byte[] raw, int ptr, int end) {
Arrays.fill(buf16, (byte) 0);
System.arraycopy(raw, ptr, buf16, 0, end - ptr);
return rabin(buf16, 0);
} else {
return rabin(raw, ptr);
}
return rabin(raw, ptr);
}
private int rabin(byte[] raw, int ptr) {

View File

@ -299,9 +299,9 @@ public boolean required() {
/** {@inheritDoc} */
@Override
protected OptionHandler createOptionHandler(OptionDef o, Setter setter) {
if (o instanceof NamedOptionDef)
if (o instanceof NamedOptionDef) {
return super.createOptionHandler(o, setter);
else
}
return super.createOptionHandler(new MyOptionDef(o), setter);
}

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -179,9 +179,8 @@ protected IoWriteFuture sendIdentification(String ident)
} catch (Exception other) {
throw new IOException(other.getLocalizedMessage(), other);
}
} else {
return super.sendIdentification(ident);
}
return super.sendIdentification(ident);
}
@Override
@ -205,9 +204,8 @@ protected byte[] sendKexInit()
} catch (Exception other) {
throw new IOException(other.getLocalizedMessage(), other);
}
} else {
return super.sendKexInit();
}
return super.sendKexInit();
}
/**

View File

@ -453,9 +453,8 @@ private static boolean askUser(CredentialsProvider provider, URIish uri,
prompt);
items.add(answer);
return provider.get(uri, items) && answer.getValue();
} else {
return provider.get(uri, items);
}
return provider.get(uri, items);
}
private Check checkMode(SocketAddress remoteAddress, boolean changed) {

View File

@ -207,12 +207,11 @@ private static int parseChallenge(AuthenticationChallenge challenge,
next++;
}
return next;
} else {
}
// This token must be the name of the next authentication
// scheme.
return start;
}
}
int nextStart = skipWhiteSpace(header, next + 1);
if (nextStart >= length) {
if (next == end) {
@ -244,11 +243,10 @@ private static int parseChallenge(AuthenticationChallenge challenge,
// token, and the equals sign is part of the token
challenge.setToken(header.substring(start, end + 1));
return nextStart + 1;
} else {
}
// Key without value...
challenge.addArgument(header.substring(start, end), null);
start = nextStart + 1;
}
} else {
if (header.charAt(nextStart) == '"') {
int nextEnd[] = { nextStart + 1 };

View File

@ -281,12 +281,11 @@ private byte[] getAuthenticationProposals() {
}
if (i == proposals.length) {
return proposals;
} else {
}
byte[] result = new byte[i];
System.arraycopy(proposals, 0, result, 0, i);
return result;
}
}
private void sendConnectInfo(IoSession session) throws Exception {
GssApiMechanisms.closeContextSilently(context);

View File

@ -354,9 +354,8 @@ private String absolute(String path) {
if (path.charAt(0) != '/') {
if (cwd.charAt(cwd.length() - 1) == '/') {
return cwd + path;
} else {
return cwd + '/' + path;
}
return cwd + '/' + path;
}
return path;
}

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=error

View File

@ -295,9 +295,8 @@ private Path copyFile(Path src, Path dst) throws IOException {
Files.copy(src, dstOut);
return dst;
}
} else {
return Files.copy(src, dst, StandardCopyOption.REPLACE_EXISTING);
}
return Files.copy(src, dst, StandardCopyOption.REPLACE_EXISTING);
}
private Path copyPack(Path base, String srcSuffix, String dstSuffix)

View File

@ -88,9 +88,8 @@ private ObjectId writeAndReadBackFromTempFile(ObjectId objectId)
try (InputStream in = new FileInputStream(file)) {
if (objectId == null) {
return ObjectIdSerializer.read(in);
} else {
}
return ObjectIdSerializer.readWithoutMarker(in);
}
}
}
}

View File

@ -67,9 +67,8 @@ public Map<String, Ref> getRefs(String prefix) throws IOException {
existing.put("refs/heads/a/b", null /* not used */);
existing.put("refs/heads/q", null /* not used */);
return existing;
} else {
return Collections.emptyMap();
}
return Collections.emptyMap();
}
@Override

View File

@ -133,16 +133,15 @@ public void connect() throws IOException {
@Override
public String getHeaderField(String name) {
if (!headerFields.containsKey(name))
return null;
else {
int n = headerFields.get(name).size();
if (n > 0)
return headerFields.get(name).get(n - 1);
else
if (!headerFields.containsKey(name)) {
return null;
}
int n = headerFields.get(name).size();
if (n > 0) {
return headerFields.get(name).get(n - 1);
}
return null;
}
@Override

View File

@ -239,9 +239,8 @@ && haveEnvVar(ENV_BUCKET_NAME)) {
loadEnvVar(ENV_SECRET_KEY, SECRET_KEY, props);
loadEnvVar(ENV_BUCKET_NAME, TEST_BUCKET, props);
return props;
} else {
return null;
}
return null;
}
static Properties fromEnvFile() throws Exception {
@ -250,13 +249,11 @@ static Properties fromEnvFile() throws Exception {
props.load(new FileInputStream(ENV_CONFIG_FILE));
if (checkTestProps(props)) {
return props;
} else {
}
throw new Error("Environment config file is incomplete.");
}
} else {
return null;
}
}
static Properties fromSysProps() {
if (haveSysProp(SYS_ACCESS_KEY) && haveSysProp(SYS_SECRET_KEY)
@ -266,9 +263,8 @@ && haveSysProp(SYS_BUCKET_NAME)) {
loadSysProp(SYS_SECRET_KEY, SECRET_KEY, props);
loadSysProp(SYS_BUCKET_NAME, TEST_BUCKET, props);
return props;
} else {
return null;
}
return null;
}
static Properties fromSysFile() throws Exception {
@ -277,13 +273,11 @@ static Properties fromSysFile() throws Exception {
props.load(new FileInputStream(SYS_CONFIG_FILE));
if (checkTestProps(props)) {
return props;
} else {
}
throw new Error("System props config file is incomplete.");
}
} else {
return null;
}
}
static Properties fromConfigFile(String path) throws Exception {
File file = new File(path);
@ -292,13 +286,11 @@ static Properties fromConfigFile(String path) throws Exception {
props.load(new FileInputStream(file));
if (checkTestProps(props)) {
return props;
} else {
}
throw new Error("Props config file is incomplete: " + path);
}
} else {
return null;
}
}
/**
* Find test properties from various sources in order of priority.

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -92,7 +92,7 @@ org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning

View File

@ -275,13 +275,12 @@ private static byte[] toByteArray(InputStream source, int upperSizeLimit)
byte[] buffer = new byte[upperSizeLimit];
try {
int read = IO.readFully(source, buffer, 0);
if (read == upperSizeLimit)
if (read == upperSizeLimit) {
return buffer;
else {
}
byte[] copy = new byte[read];
System.arraycopy(buffer, 0, copy, 0, read);
return copy;
}
} finally {
source.close();
}

View File

@ -136,28 +136,32 @@ public List<DiffEntry> call() throws GitAPIException {
}
newTree = new DirCacheIterator(repo.readDirCache());
} else {
if (oldTree == null)
if (oldTree == null) {
oldTree = new DirCacheIterator(repo.readDirCache());
if (newTree == null)
}
if (newTree == null) {
newTree = new FileTreeIterator(repo);
}
}
diffFmt.setPathFilter(pathFilter);
List<DiffEntry> result = diffFmt.scan(oldTree, newTree);
if (showNameAndStatusOnly)
if (showNameAndStatusOnly) {
return result;
else {
if (contextLines >= 0)
}
if (contextLines >= 0) {
diffFmt.setContext(contextLines);
if (destinationPrefix != null)
}
if (destinationPrefix != null) {
diffFmt.setNewPrefix(destinationPrefix);
if (sourcePrefix != null)
}
if (sourcePrefix != null) {
diffFmt.setOldPrefix(sourcePrefix);
}
diffFmt.format(result);
diffFmt.flush();
return result;
}
} catch (IOException e) {
throw new JGitInternalException(e.getMessage(), e);
}

View File

@ -360,18 +360,18 @@ public FetchCommand setCheckFetchedObjects(boolean checkFetchedObjects) {
* @return whether to remove refs which no longer exist in the source
*/
public boolean isRemoveDeletedRefs() {
if (removeDeletedRefs != null)
if (removeDeletedRefs != null) {
return removeDeletedRefs.booleanValue();
else { // fall back to configuration
}
// fall back to configuration
boolean result = false;
StoredConfig config = repo.getConfig();
result = config.getBoolean(ConfigConstants.CONFIG_FETCH_SECTION,
null, ConfigConstants.CONFIG_KEY_PRUNE, result);
result = config.getBoolean(ConfigConstants.CONFIG_FETCH_SECTION, null,
ConfigConstants.CONFIG_KEY_PRUNE, result);
result = config.getBoolean(ConfigConstants.CONFIG_REMOTE_SECTION,
remote, ConfigConstants.CONFIG_KEY_PRUNE, result);
return result;
}
}
/**
* If set to {@code true}, refs are removed which no longer exist in the

View File

@ -243,9 +243,8 @@ public Properties getStatistics() throws GitAPIException {
if (repo instanceof FileRepository) {
GC gc = new GC((FileRepository) repo);
return toProperties(gc.getStatistics());
} else {
return new Properties();
}
return new Properties();
} catch (IOException e) {
throw new JGitInternalException(
JGitText.get().couldNotGetRepoStatistics, e);

View File

@ -409,27 +409,24 @@ public MergeResult call() throws GitAPIException, NoHeadException,
new ObjectId[] { headCommit.getId(),
srcCommit.getId() }, mergeStatus,
mergeStrategy, null, msg);
} else {
}
if (failingPaths != null) {
repo.writeMergeCommitMsg(null);
repo.writeMergeHeads(null);
return new MergeResult(null, merger.getBaseCommitId(),
new ObjectId[] {
headCommit.getId(), srcCommit.getId() },
MergeStatus.FAILED, mergeStrategy,
lowLevelResults, failingPaths, null);
} else {
new ObjectId[] { headCommit.getId(),
srcCommit.getId() },
MergeStatus.FAILED, mergeStrategy, lowLevelResults,
failingPaths, null);
}
String mergeMessageWithConflicts = new MergeMessageFormatter()
.formatWithConflicts(mergeMessage,
unmergedPaths);
.formatWithConflicts(mergeMessage, unmergedPaths);
repo.writeMergeCommitMsg(mergeMessageWithConflicts);
return new MergeResult(null, merger.getBaseCommitId(),
new ObjectId[] { headCommit.getId(),
srcCommit.getId() },
MergeStatus.CONFLICTING, mergeStrategy,
lowLevelResults, null);
}
}
MergeStatus.CONFLICTING, mergeStrategy, lowLevelResults,
null);
}
} catch (org.eclipse.jgit.errors.CheckoutConflictException e) {
List<String> conflicts = (dco == null) ? Collections

View File

@ -315,23 +315,24 @@ public PullResult call() throws GitAPIException,
Ref r = null;
if (fetchRes != null) {
r = fetchRes.getAdvertisedRef(remoteBranchName);
if (r == null)
if (r == null) {
r = fetchRes.getAdvertisedRef(Constants.R_HEADS
+ remoteBranchName);
}
}
if (r == null) {
throw new RefNotAdvertisedException(MessageFormat.format(
JGitText.get().couldNotGetAdvertisedRef, remote,
remoteBranchName));
} else {
commitToMerge = r.getObjectId();
}
commitToMerge = r.getObjectId();
} else {
try {
commitToMerge = repo.resolve(remoteBranchName);
if (commitToMerge == null)
if (commitToMerge == null) {
throw new RefNotFoundException(MessageFormat.format(
JGitText.get().refNotResolved, remoteBranchName));
}
} catch (IOException e) {
throw new JGitInternalException(
JGitText.get().exceptionCaughtDuringExecutionOfPullCommand,

View File

@ -509,9 +509,9 @@ private RebaseResult cherryPickCommit(RevCommit commitToPick)
monitor.beginTask(MessageFormat.format(
JGitText.get().applyingCommit,
commitToPick.getShortMessage()), ProgressMonitor.UNKNOWN);
if (preserveMerges)
if (preserveMerges) {
return cherryPickCommitPreservingMerges(commitToPick);
else
}
return cherryPickCommitFlattening(commitToPick);
} finally {
monitor.endTask();
@ -539,10 +539,10 @@ private RebaseResult cherryPickCommitFlattening(RevCommit commitToPick)
.call();
switch (cherryPickResult.getStatus()) {
case FAILED:
if (operation == Operation.BEGIN)
if (operation == Operation.BEGIN) {
return abort(RebaseResult
.failed(cherryPickResult.getFailingPaths()));
else
}
return stop(commitToPick, Status.STOPPED);
case CONFLICTING:
return stop(commitToPick, Status.STOPPED);
@ -599,10 +599,10 @@ private RebaseResult cherryPickCommitPreservingMerges(RevCommit commitToPick)
CherryPickResult cherryPickResult = pickCommand.call();
switch (cherryPickResult.getStatus()) {
case FAILED:
if (operation == Operation.BEGIN)
if (operation == Operation.BEGIN) {
return abort(RebaseResult.failed(
cherryPickResult.getFailingPaths()));
else
}
return stop(commitToPick, Status.STOPPED);
case CONFLICTING:
return stop(commitToPick, Status.STOPPED);

View File

@ -334,9 +334,9 @@ public boolean isReflogDisabled() {
}
private String getRefOrHEAD() {
if (ref != null)
if (ref != null) {
return ref;
else
}
return Constants.HEAD;
}

View File

@ -106,9 +106,9 @@ public SubmoduleSyncCommand addPath(String path) {
*/
protected String getHeadBranch(Repository subRepo) throws IOException {
Ref head = subRepo.exactRef(Constants.HEAD);
if (head != null && head.isSymbolic())
if (head != null && head.isSymbolic()) {
return Repository.shortenRefName(head.getLeaf().getName());
else
}
return null;
}

View File

@ -267,19 +267,19 @@ public void computeAll() throws IOException {
*/
public int computeNext() throws IOException {
BlameGenerator gen = generator;
if (gen == null)
if (gen == null) {
return -1;
}
if (gen.next()) {
loadFrom(gen);
lastLength = gen.getRegionLength();
return gen.getResultStart();
} else {
}
gen.close();
generator = null;
return -1;
}
}
/**
* Get last length

View File

@ -489,7 +489,7 @@ private AbstractTreeIterator makeIteratorFromTreeOrNull(RevTree tree)
CanonicalTreeParser parser = new CanonicalTreeParser();
parser.reset(reader, tree);
return parser;
} else
}
return new EmptyTreeIterator();
}

View File

@ -125,17 +125,17 @@ public Edit(int as, int ae, int bs, int be) {
*/
public final Type getType() {
if (beginA < endA) {
if (beginB < endB)
if (beginB < endB) {
return Type.REPLACE;
else /* if (beginB == endB) */
}
return Type.DELETE;
} else /* if (beginA == endA) */{
if (beginB < endB)
return Type.INSERT;
else /* if (beginB == endB) */
return Type.EMPTY;
}
if (beginB < endB) {
return Type.INSERT;
}
// beginB == endB)
return Type.EMPTY;
}
/**

View File

@ -383,14 +383,16 @@ public static boolean isCrLfText(byte[] raw, int length) {
* @return the line delimiter or <code>null</code>
*/
public String getLineDelimiter() {
if (size() == 0)
if (size() == 0) {
return null;
}
int e = getEnd(0);
if (content[e - 1] != '\n')
if (content[e - 1] != '\n') {
return null;
if (content.length > 1 && e > 1 && content[e - 2] == '\r')
}
if (content.length > 1 && e > 1 && content[e - 2] == '\r') {
return "\r\n"; //$NON-NLS-1$
else
}
return "\n"; //$NON-NLS-1$
}

View File

@ -517,9 +517,9 @@ private boolean doCheckout() throws CorruptObjectException, IOException,
prescanOneTree();
if (!conflicts.isEmpty()) {
if (failOnConflict)
if (failOnConflict) {
throw new CheckoutConflictException(conflicts.toArray(new String[0]));
else
}
cleanUpConflicts();
}
@ -895,7 +895,7 @@ void processEntry(CanonicalTreeParser h, CanonicalTreeParser m,
// the workingtree entry doesn't exist or also contains a folder
// -> no problem
return;
} else {
}
// the workingtree entry exists and is not a folder
if (!idEqual(h, m)) {
// Because HEAD and MERGE differ we will try to update the
@ -904,7 +904,6 @@ void processEntry(CanonicalTreeParser h, CanonicalTreeParser m,
}
return;
}
}
if ((ffMask == 0x00F) && f != null && FileMode.TREE.equals(f.getEntryFileMode())) {
// File/Directory conflict case #20
@ -1083,15 +1082,15 @@ else if (m == null)
// Something in Head
if (!FileMode.TREE.equals(f.getEntryFileMode())
&& FileMode.TREE.equals(iMode))
&& FileMode.TREE.equals(iMode)) {
// The workingtree contains a file and the index semantically contains a folder.
// Git considers the workingtree file as untracked. Just keep the untracked file.
return;
else
}
// -> file is dirty and tracked but is should be
// removed. That's a conflict
conflict(name, dce, h, m);
} else
} else {
// file doesn't exist or is clean
// Index contains the same as Head
// Something different from a submodule in Index
@ -1099,7 +1098,8 @@ else if (m == null)
// Something in Head
// -> Remove from index and delete the file
remove(name);
} else
}
} else {
// Index contains something different from Head
// Something different from a submodule in Index
// Nothing in Merge
@ -1109,6 +1109,7 @@ else if (m == null)
// Report a conflict
conflict(name, dce, h, m);
}
}
} else {
// Something in Merge
// Something in Head
@ -1340,12 +1341,13 @@ private boolean isModifiedSubtree_IndexWorkingtree(String path)
private boolean isModified_IndexTree(String path, ObjectId iId,
FileMode iMode, ObjectId tId, FileMode tMode, ObjectId rootTree)
throws CorruptObjectException, IOException {
if (iMode != tMode)
if (iMode != tMode) {
return true;
}
if (FileMode.TREE.equals(iMode)
&& (iId == null || ObjectId.zeroId().equals(iId)))
&& (iId == null || ObjectId.zeroId().equals(iId))) {
return isModifiedSubtree_IndexTree(path, rootTree);
else
}
return !equalIdAndMode(iId, iMode, tId, tMode);
}

View File

@ -824,9 +824,9 @@ private void encodeTS(int pIdx, Instant when) {
}
private int getExtendedFlags() {
if (isExtended())
if (isExtended()) {
return NB.decodeUInt16(info, infoOffset + P_FLAGS2) << 16;
else
}
return 0;
}

View File

@ -82,9 +82,9 @@ public final void setNewHeads(List<Head> newHeads) {
/** {@inheritDoc} */
@Override
public List<Head> getNextHeads(char c) {
if (matches(c))
if (matches(c)) {
return newHeads;
else
}
return FileNameMatcher.EMPTY_HEAD_LIST;
}

View File

@ -304,10 +304,10 @@ private static List<AbstractHead> createSimpleHeads(
private static AbstractHead createWildCardHead(
final Character invalidWildgetCharacter, final boolean star) {
if (invalidWildgetCharacter != null)
if (invalidWildgetCharacter != null) {
return new RestrictedWildCardHead(invalidWildgetCharacter
.charValue(), star);
else
}
return new WildCardHead(star);
}

View File

@ -293,13 +293,12 @@ public void endDocument() throws SAXException {
String revision = defaultRevision;
if (remote == null) {
if (defaultRemote == null) {
if (filename != null)
if (filename != null) {
throw new SAXException(MessageFormat.format(
RepoText.get().errorNoDefaultFilename,
filename));
else
throw new SAXException(
RepoText.get().errorNoDefault);
}
throw new SAXException(RepoText.get().errorNoDefault);
}
remote = defaultRemote;
} else {

View File

@ -761,7 +761,7 @@ public RevCommit call() throws GitAPIException {
} catch (GitAPIException | IOException e) {
throw new ManifestErrorException(e);
}
} else {
}
try (Git git = new Git(repo)) {
for (RepoProject proj : filteredProjects) {
addSubmodule(proj.getName(), proj.getUrl(), proj.getPath(),
@ -774,7 +774,6 @@ public RevCommit call() throws GitAPIException {
throw new ManifestErrorException(e);
}
}
}
private void addSubmodule(String name, String url, String path,
String revision, List<CopyFile> copyfiles, List<LinkFile> linkfiles,

View File

@ -422,9 +422,9 @@ public void clearLinkFiles() {
}
private String getPathWithSlash() {
if (path.endsWith("/")) //$NON-NLS-1$
if (path.endsWith("/")) { //$NON-NLS-1$
return path;
else
}
return path + "/"; //$NON-NLS-1$
}

View File

@ -291,7 +291,7 @@ && isWild(matchers.get(matcher))) {
// We had a prefix match here.
if (!pathMatch) {
return true;
} else {
}
if (right == endExcl - 1) {
// Extra slash at the end: actually a full match.
// Must meet directory expectations
@ -312,7 +312,6 @@ && isWild(matchers.get(matcher))) {
return false;
}
}
}
} else if (lastWildmatch != -1) {
matcher = lastWildmatch + 1;
right = wildmatchBacktrackPos;

View File

@ -192,7 +192,7 @@ private static boolean isComplexWildcard(String pattern) {
}
if (pattern.indexOf('?') != -1) {
return true;
} else {
}
// check if the backslash escapes one of the glob special characters
// if not, backslash is not part of a regex and treated literally
int backSlash = pattern.indexOf('\\');
@ -204,11 +204,9 @@ private static boolean isComplexWildcard(String pattern) {
char nextChar = pattern.charAt(nextIdx);
if (escapedByBackslash(nextChar)) {
return true;
} else {
}
return false;
}
}
}
return false;
}

View File

@ -132,9 +132,8 @@ KetchReplica.State check(ObjectId acceptId, ReceiveCommand acceptCmd) {
// TODO(sop) Check term to see if my leader was deposed.
if (rw.isMergedInto(head, remote)) {
return AHEAD;
} else {
return DIVERGENT;
}
return DIVERGENT;
} catch (IOException err) {
KetchReplica.log.error(String.format(
"Cannot compare %s", //$NON-NLS-1$

View File

@ -191,16 +191,13 @@ Ref doPeel(Ref leaf) throws MissingObjectException,
rw.peel(obj).copy(),
hasVersioning() ? leaf.getUpdateIndex()
: UNDEFINED_UPDATE_INDEX);
} else {
return new ObjectIdRef.PeeledNonTag(
leaf.getStorage(),
leaf.getName(),
leaf.getObjectId(),
}
return new ObjectIdRef.PeeledNonTag(leaf.getStorage(),
leaf.getName(), leaf.getObjectId(),
hasVersioning() ? leaf.getUpdateIndex()
: UNDEFINED_UPDATE_INDEX);
}
}
}
static Ref recreate(Ref old, Ref leaf, boolean hasVersioning) {
if (old.isSymbolic()) {

View File

@ -358,9 +358,8 @@ public String getIdentifier() {
File directory = getDirectory();
if (directory != null) {
return directory.getPath();
} else {
throw new IllegalStateException();
}
throw new IllegalStateException();
}
/** {@inheritDoc} */

View File

@ -152,12 +152,11 @@ void unlock() {
boolean commit() {
if (nonEmpty) {
return lock.commit();
} else {
}
logFile.delete();
lock.unlock();
return true;
}
}
/**
* Write to the pending gc log. Content will be committed upon a call to

View File

@ -109,11 +109,10 @@ private ObjectId insert(
ObjectId id = idFor(type, data, off, len);
if (!createDuplicate && db.has(id)) {
return id;
} else {
}
File tmp = toTemp(type, data, off, len);
return insertOneObject(tmp, id, createDuplicate);
}
}
/** {@inheritDoc} */
@Override
@ -141,13 +140,12 @@ ObjectId insert(int type, long len, InputStream is, boolean createDuplicate)
int actLen = IO.readFully(is, buf, 0);
return insert(type, buf, 0, actLen, createDuplicate);
} else {
}
SHA1 md = digest();
File tmp = toTemp(md, type, len, is);
ObjectId id = md.toObjectId();
return insertOneObject(tmp, id, createDuplicate);
}
}
private ObjectId insertOneObject(
File tmp, ObjectId id, boolean createDuplicate)

View File

@ -844,17 +844,18 @@ ObjectLoader load(WindowCursor curs, long pos)
case Constants.OBJ_TREE:
case Constants.OBJ_BLOB:
case Constants.OBJ_TAG: {
if (delta != null || sz < curs.getStreamFileThreshold())
if (delta != null || sz < curs.getStreamFileThreshold()) {
data = decompress(pos + p, (int) sz, curs);
}
if (delta != null) {
type = typeCode;
break SEARCH;
}
if (data != null)
if (data != null) {
return new ObjectLoader.SmallObject(typeCode, data);
else
}
return new LargePackedWholeObject(typeCode, sz, pos, p,
this, curs.db);
}

View File

@ -594,10 +594,9 @@ private ObjectIdRef doPeel(Ref leaf) throws MissingObjectException,
if (obj instanceof RevTag) {
return new ObjectIdRef.PeeledTag(leaf.getStorage(), leaf
.getName(), leaf.getObjectId(), rw.peel(obj).copy());
} else {
return new ObjectIdRef.PeeledNonTag(leaf.getStorage(), leaf
.getName(), leaf.getObjectId());
}
return new ObjectIdRef.PeeledNonTag(leaf.getStorage(),
leaf.getName(), leaf.getObjectId());
}
}
@ -894,11 +893,10 @@ private Ref peeledPackedRef(Ref f)
if (peeledObjectId != null) {
return new ObjectIdRef.PeeledTag(PACKED, f.getName(),
f.getObjectId(), peeledObjectId);
} else {
}
return new ObjectIdRef.PeeledNonTag(PACKED, f.getName(),
f.getObjectId());
}
}
void log(boolean force, RefUpdate update, String msg, boolean deref)
throws IOException {
@ -1480,10 +1478,8 @@ public LooseRef peel(ObjectIdRef newLeaf) {
if (peeledObjectId != null) {
return new LoosePeeledTag(snapShot, getName(),
objectId, peeledObjectId);
} else {
return new LooseNonTag(snapShot, getName(),
objectId);
}
return new LooseNonTag(snapShot, getName(), objectId);
}
}

View File

@ -90,9 +90,8 @@ protected boolean tryLock(boolean deref) throws IOException {
dst = database.findRef(name);
setOldObjectId(dst != null ? dst.getObjectId() : null);
return true;
} else {
return false;
}
return false;
}
/** {@inheritDoc} */

View File

@ -140,9 +140,9 @@ public String toString() {
/** {@inheritDoc} */
@Override
public CheckoutEntry parseCheckout() {
if (getComment().startsWith(CheckoutEntryImpl.CHECKOUT_MOVING_FROM))
if (getComment().startsWith(CheckoutEntryImpl.CHECKOUT_MOVING_FROM)) {
return new CheckoutEntryImpl(this);
else
}
return null;
}
}

View File

@ -139,7 +139,7 @@ static ObjectLoader open(InputStream in, File path, AnyObjectId id,
}
return new LargeObject(type, size, path, id, wc.db);
} else {
}
readSome(in, hdr, 2, 18);
int c = hdr[0] & 0xff;
int type = (c >> 4) & 7;
@ -181,7 +181,6 @@ static ObjectLoader open(InputStream in, File path, AnyObjectId id,
return new ObjectLoader.SmallObject(type, data);
}
return new LargeObject(type, size, path, id, wc.db);
}
} catch (ZipException badStream) {
throw new CorruptObjectException(id,
JGitText.get().corruptObjectBadStream);
@ -213,7 +212,7 @@ static long getSize(InputStream in, AnyObjectId id, WindowCursor wc)
JGitText.get().corruptObjectNegativeSize);
return size;
} else {
}
readSome(in, hdr, 2, 18);
int c = hdr[0] & 0xff;
long size = c & 15;
@ -225,7 +224,6 @@ static long getSize(InputStream in, AnyObjectId id, WindowCursor wc)
shift += 7;
}
return size;
}
} catch (ZipException badStream) {
throw new CorruptObjectException(id,
JGitText.get().corruptObjectBadStream);

View File

@ -126,17 +126,19 @@ boolean add(AnyObjectId toAdd) {
for (int n = 0; n < MAX_CHAIN;) {
ObjectId obj = ids.get(i);
if (obj == null) {
if (ids.compareAndSet(i, null, toAdd.copy()))
if (ids.compareAndSet(i, null, toAdd.copy())) {
return true;
else
}
continue;
}
if (AnyObjectId.isEqual(obj, toAdd))
if (AnyObjectId.isEqual(obj, toAdd)) {
return true;
}
if (++i == ids.length())
if (++i == ids.length()) {
i = 0;
}
n++;
}
return false;

View File

@ -1751,7 +1751,7 @@ private void writeObjectImpl(PackOutputStream out, ObjectToPack otp)
NullProgressMonitor.INSTANCE,
Collections.singleton(otp));
continue;
} else {
}
// Object writing already started, we cannot recover.
//
CorruptObjectException coe;
@ -1760,14 +1760,14 @@ private void writeObjectImpl(PackOutputStream out, ObjectToPack otp)
throw coe;
}
}
}
// If we reached here, reuse wasn't possible.
//
if (otp.isDeltaRepresentation())
if (otp.isDeltaRepresentation()) {
writeDeltaObjectDeflate(out, otp);
else
} else {
writeWholeObjectDeflate(out, otp);
}
out.endObject();
otp.setCRC((int) crc32.getValue());
}

View File

@ -87,32 +87,28 @@ public static ReceiveCommand toCommand(Ref oldRef, Ref newRef) {
if (newRef.isSymbolic()) {
return ReceiveCommand.link(oldRef.getTarget().getName(),
newRef.getTarget().getName(), name);
} else {
}
// This should pass in oldId for compat with
// RefDirectoryUpdate
return ReceiveCommand.unlink(oldRef.getTarget().getName(),
newId, name);
}
} else {
return ReceiveCommand.unlink(oldRef.getTarget().getName(),
ObjectId.zeroId(), name);
}
}
if (newRef != null && newRef.isSymbolic()) {
if (oldRef != null) {
if (oldRef.isSymbolic()) {
return ReceiveCommand.link(oldRef.getTarget().getName(),
newRef.getTarget().getName(), name);
} else {
}
return ReceiveCommand.link(oldId,
newRef.getTarget().getName(), name);
}
} else {
return ReceiveCommand.link(ObjectId.zeroId(),
newRef.getTarget().getName(), name);
}
}
return new ReceiveCommand(oldId, newId, name);
}

View File

@ -102,9 +102,8 @@ public void execute(RevWalk rw, ProgressMonitor monitor)
if (isAtomic()) {
ReceiveCommand.abort(getCommands());
return;
} else {
continue;
}
continue;
}
}
todo.add(new Command(rw, c));

View File

@ -82,9 +82,8 @@ private NetscapeCookieFileCache(HttpConfig config) {
public static NetscapeCookieFileCache getInstance(HttpConfig config) {
if (instance == null) {
return new NetscapeCookieFileCache(config);
} else {
return instance;
}
return instance;
}
/**

View File

@ -384,9 +384,8 @@ protected List<String> validate(String key, List<String> value) {
private static boolean isHostMatch(String pattern, String name) {
if (pattern.startsWith("!")) { //$NON-NLS-1$
return !patternMatchesHost(pattern.substring(1), name);
} else {
return patternMatchesHost(pattern, name);
}
return patternMatchesHost(pattern, name);
}
private static boolean patternMatchesHost(String pattern, String name) {
@ -399,11 +398,10 @@ private static boolean patternMatchesHost(String pattern, String name) {
}
fn.append(name);
return fn.isMatch();
} else {
}
// Not a pattern but a full host name
return pattern.equals(name);
}
}
private static String dequote(String value) {
if (value.startsWith("\"") && value.endsWith("\"") //$NON-NLS-1$ //$NON-NLS-2$

View File

@ -302,9 +302,9 @@ public final boolean equals(AnyObjectId other) {
/** {@inheritDoc} */
@Override
public final boolean equals(Object o) {
if (o instanceof AnyObjectId)
if (o instanceof AnyObjectId) {
return equals((AnyObjectId) o);
else
}
return false;
}

View File

@ -103,24 +103,28 @@ private static boolean isSymRef(byte[] ref) {
private static File getSymRef(File workTree, File dotGit, FS fs)
throws IOException {
byte[] content = IO.readFully(dotGit);
if (!isSymRef(content))
if (!isSymRef(content)) {
throw new IOException(MessageFormat.format(
JGitText.get().invalidGitdirRef, dotGit.getAbsolutePath()));
}
int pathStart = 8;
int lineEnd = RawParseUtils.nextLF(content, pathStart);
while (content[lineEnd - 1] == '\n' ||
(content[lineEnd - 1] == '\r' && SystemReader.getInstance().isWindows()))
(content[lineEnd - 1] == '\r'
&& SystemReader.getInstance().isWindows())) {
lineEnd--;
if (lineEnd == pathStart)
}
if (lineEnd == pathStart) {
throw new IOException(MessageFormat.format(
JGitText.get().invalidGitdirRef, dotGit.getAbsolutePath()));
}
String gitdirPath = RawParseUtils.decode(content, pathStart, lineEnd);
File gitdirFile = fs.resolve(workTree, gitdirPath);
if (gitdirFile.isAbsolute())
if (gitdirFile.isAbsolute()) {
return gitdirFile;
else
}
return new File(workTree, gitdirPath).getCanonicalFile();
}
@ -723,9 +727,8 @@ protected Config loadConfig() throws IOException {
.getAbsolutePath(), err.getMessage()));
}
return cfg;
} else {
return new Config();
}
return new Config();
}
private File guessWorkTreeOrFail() throws IOException {

View File

@ -232,9 +232,9 @@ private String findRemoteTrackingBranch(String remote, String mergeRef) {
private String getRemoteOrDefault() {
String remote = getRemote();
if (remote == null)
if (remote == null) {
return Constants.DEFAULT_REMOTE_NAME;
else
}
return remote;
}
}

View File

@ -1395,13 +1395,12 @@ private static String readValue(StringReader in)
}
trailingSpaces.append(cc);
continue;
} else {
}
inLeadingSpace = false;
if (trailingSpaces != null) {
value.append(trailingSpaces);
trailingSpaces.setLength(0);
}
}
if ('\\' == c) {
c = in.read();

View File

@ -134,11 +134,9 @@ public <T extends Enum<?>> T getEnum(Config config, T[] all, String section,
throw new IllegalArgumentException(
MessageFormat.format(JGitText.get().enumValueNotSupported3,
section, subsection, name, value));
} else {
throw new IllegalArgumentException(
MessageFormat.format(JGitText.get().enumValueNotSupported2,
section, name, value));
}
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().enumValueNotSupported2, section, name, value));
}
/** {@inheritDoc} */

View File

@ -606,15 +606,16 @@ public boolean diff(final ProgressMonitor monitor, int estWorkTreeSize,
}
// consume the remaining work
if (monitor != null)
if (monitor != null) {
monitor.endTask();
}
ignored = indexDiffFilter.getIgnoredPaths();
if (added.isEmpty() && changed.isEmpty() && removed.isEmpty()
&& missing.isEmpty() && modified.isEmpty()
&& untracked.isEmpty())
&& untracked.isEmpty()) {
return false;
else
}
return true;
}

View File

@ -293,9 +293,8 @@ public boolean next() throws MissingObjectException, IOException {
if (idItr.hasNext()) {
cur = idItr.next();
return true;
} else {
return false;
}
return false;
}
@Override
@ -383,9 +382,8 @@ public boolean next() throws MissingObjectException, IOException {
cur = idItr.next();
sz = getObjectSize(cur, OBJ_ANY);
return true;
} else {
return false;
}
return false;
}
@Override

View File

@ -503,9 +503,8 @@ public ObjectId resolve(String revstr)
if (resolved instanceof String) {
final Ref ref = findRef((String) resolved);
return ref != null ? ref.getLeaf().getObjectId() : null;
} else {
return (ObjectId) resolved;
}
return (ObjectId) resolved;
}
}
@ -527,11 +526,12 @@ public String simplify(String revstr)
try (RevWalk rw = new RevWalk(this)) {
rw.setRetainBody(true);
Object resolved = resolve(rw, revstr);
if (resolved != null)
if (resolved instanceof String)
if (resolved != null) {
if (resolved instanceof String) {
return (String) resolved;
else
}
return ((AnyObjectId) resolved).getName();
}
return null;
}
}
@ -760,14 +760,14 @@ private Object resolve(RevWalk rw, String revstr)
if (name == null)
throw new RevisionSyntaxException(revstr);
} else if (time.matches("^-\\d+$")) { //$NON-NLS-1$
if (name != null)
if (name != null) {
throw new RevisionSyntaxException(revstr);
else {
String previousCheckout = resolveReflogCheckout(-Integer
.parseInt(time));
if (ObjectId.isId(previousCheckout))
}
String previousCheckout = resolveReflogCheckout(
-Integer.parseInt(time));
if (ObjectId.isId(previousCheckout)) {
rev = parseSimple(rw, previousCheckout);
else
} else {
name = previousCheckout;
}
} else {

View File

@ -166,9 +166,9 @@ private static String[] getMergeOptions(String branch, Config config) {
String mergeOptions = config.getString(
ConfigConstants.CONFIG_BRANCH_SECTION, branch,
ConfigConstants.CONFIG_KEY_MERGEOPTIONS);
if (mergeOptions != null)
if (mergeOptions != null) {
return mergeOptions.split("\\s"); //$NON-NLS-1$
else
}
return new String[0];
}
@ -188,9 +188,9 @@ public MergeConfig parse(Config cfg) {
@Override
public boolean equals(Object obj) {
if (obj instanceof MergeConfigSectionParser)
if (obj instanceof MergeConfigSectionParser) {
return branch.equals(((MergeConfigSectionParser) obj).branch);
else
}
return false;
}

View File

@ -153,15 +153,16 @@ public String formatWithConflicts(String message,
private static void addConflictsMessage(List<String> conflictingPaths,
StringBuilder sb) {
sb.append("Conflicts:\n"); //$NON-NLS-1$
for (String conflictingPath : conflictingPaths)
for (String conflictingPath : conflictingPaths) {
sb.append('\t').append(conflictingPath).append('\n');
}
}
private static String joinNames(List<String> names, String singular,
String plural) {
if (names.size() == 1)
if (names.size() == 1) {
return singular + " " + names.get(0); //$NON-NLS-1$
else
}
return plural + " " + StringUtils.join(names, ", ", " and "); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}

View File

@ -652,43 +652,41 @@ protected boolean processEntry(CanonicalTreeParser base,
keep(ourDce);
// no checkout needed!
return true;
} else {
}
// same content but different mode on OURS and THEIRS.
// Try to merge the mode and report an error if this is
// not possible.
int newMode = mergeFileModes(modeB, modeO, modeT);
if (newMode != FileMode.MISSING.getBits()) {
if (newMode == modeO)
if (newMode == modeO) {
// ours version is preferred
keep(ourDce);
else {
} else {
// the preferred version THEIRS has a different mode
// than ours. Check it out!
if (isWorktreeDirty(work, ourDce))
if (isWorktreeDirty(work, ourDce)) {
return false;
// we know about length and lastMod only after we have written the new content.
}
// we know about length and lastMod only after we have
// written the new content.
// This will happen later. Set these values to 0 for know.
DirCacheEntry e = add(tw.getRawPath(), theirs,
DirCacheEntry.STAGE_0, EPOCH, 0);
addToCheckout(tw.getPathString(), e, attributes);
}
return true;
} else {
}
// FileModes are not mergeable. We found a conflict on modes.
// For conflicting entries we don't know lastModified and length.
// For conflicting entries we don't know lastModified and
// length.
add(tw.getRawPath(), base, DirCacheEntry.STAGE_1, EPOCH, 0);
add(tw.getRawPath(), ours, DirCacheEntry.STAGE_2, EPOCH, 0);
add(tw.getRawPath(), theirs, DirCacheEntry.STAGE_3, EPOCH,
0);
add(tw.getRawPath(), theirs, DirCacheEntry.STAGE_3, EPOCH, 0);
unmergedPaths.add(tw.getPathString());
mergeResults.put(
tw.getPathString(),
new MergeResult<>(Collections
.<RawText> emptyList()));
}
mergeResults.put(tw.getPathString(),
new MergeResult<>(Collections.<RawText> emptyList()));
return true;
}
}
if (modeB == modeT && tw.idEqual(T_BASE, T_THEIRS)) {
// THEIRS was not changed compared to BASE. All changes must be in
@ -716,7 +714,7 @@ protected boolean processEntry(CanonicalTreeParser base,
addToCheckout(tw.getPathString(), e, attributes);
}
return true;
} else {
}
// we want THEIRS ... but THEIRS contains a folder or the
// deletion of the path. Delete what's in the working tree,
// which we know to be clean.
@ -731,7 +729,6 @@ protected boolean processEntry(CanonicalTreeParser base,
addDeletion(tw.getPathString(), nonTree(modeO), attributes);
return true;
}
}
if (tw.isSubtree()) {
// file/folder conflicts: here I want to detect only file/folder
@ -1310,11 +1307,10 @@ protected boolean mergeTrees(AbstractTreeIterator baseTree,
if (getUnmergedPaths().isEmpty() && !failed()) {
resultTree = dircache.writeTree(getObjectInserter());
return true;
} else {
}
resultTree = null;
return false;
}
}
/**
* Process the given TreeWalk's entries.

View File

@ -143,17 +143,17 @@ public ObjectId getBaseCommitId() {
* @throws java.io.IOException
*/
protected AbstractTreeIterator mergeBase() throws IOException {
if (baseTree != null)
if (baseTree != null) {
return openTree(baseTree);
}
RevCommit baseCommit = (baseCommitId != null) ? walk
.parseCommit(baseCommitId) : getBaseCommit(sourceCommits[0],
sourceCommits[1]);
if (baseCommit == null) {
baseCommitId = null;
return new EmptyTreeIterator();
} else {
}
baseCommitId = baseCommit.toObjectId();
return openTree(baseCommit.getTree());
}
}
}

View File

@ -167,9 +167,9 @@ public boolean hasNext() {
@Override
public Note next() {
if (hasNext())
if (hasNext()) {
return itr.next();
else
}
throw new NoSuchElementException();
}
@ -214,22 +214,24 @@ InMemoryNoteBucket set(AnyObjectId noteOn, AnyObjectId noteData,
NoteBucket b = table[cell];
if (b == null) {
if (noteData == null)
if (noteData == null) {
return this;
}
LeafBucket n = new LeafBucket(prefixLen + 2);
table[cell] = n.set(noteOn, noteData, or);
cnt++;
return this;
} else {
}
NoteBucket n = b.set(noteOn, noteData, or);
if (n == null) {
table[cell] = null;
cnt--;
if (cnt == 0)
if (cnt == 0) {
return null;
}
return contractIfTooSmall(noteOn, or);
@ -238,7 +240,6 @@ InMemoryNoteBucket set(AnyObjectId noteOn, AnyObjectId noteData,
}
return this;
}
}
InMemoryNoteBucket contractIfTooSmall(AnyObjectId noteOn, ObjectReader or)
throws IOException {

View File

@ -129,9 +129,9 @@ public boolean hasNext() {
@Override
public Note next() {
if (hasNext())
if (hasNext()) {
return notes[idx++];
else
}
throw new NoSuchElementException();
}
@ -156,25 +156,23 @@ InMemoryNoteBucket set(AnyObjectId noteOn, AnyObjectId noteData,
notes[p].setData(noteData.copy());
return this;
} else {
}
System.arraycopy(notes, p + 1, notes, p, cnt - p - 1);
cnt--;
return 0 < cnt ? this : null;
}
} else if (noteData != null) {
if (shouldSplit()) {
return split().set(noteOn, noteData, or);
} else {
}
growIfFull();
p = -(p + 1);
if (p < cnt)
if (p < cnt) {
System.arraycopy(notes, p, notes, p + 1, cnt - p);
}
notes[p] = new Note(noteOn, noteData.copy());
cnt++;
return this;
}
} else {
return this;
@ -234,13 +232,11 @@ void parseOneEntry(AnyObjectId noteOn, AnyObjectId noteData) {
InMemoryNoteBucket append(Note note) {
if (shouldSplit()) {
return split().append(note);
} else {
}
growIfFull();
notes[cnt++] = note;
return this;
}
}
private void growIfFull() {
if (notes.length == cnt) {

View File

@ -278,9 +278,9 @@ public boolean contains(AnyObjectId id) throws IOException {
public byte[] getCachedBytes(AnyObjectId id, int sizeLimit)
throws LargeObjectException, MissingObjectException, IOException {
ObjectId dataId = get(id);
if (dataId != null)
if (dataId != null) {
return reader.open(dataId).getCachedBytes(sizeLimit);
else
}
return null;
}

View File

@ -307,9 +307,9 @@ private static boolean sameContent(Note a, Note b) {
private static InMemoryNoteBucket addIfNotNull(InMemoryNoteBucket result,
Note note) {
if (note != null)
if (note != null) {
return result.append(note);
else
}
return result;
}

Some files were not shown because too many files have changed in this diff Show More