Ver código fonte

DirCache: Fix bad code formatting

Line breaking before , is ugly to read.  Most formatters and humans
expect line break after , so update a few offensive locations.

Use String.format() for the construction of the error message when
a bad DirCachEntry is being failed on. This simplifies the code and
its not a performance critical section.

Change-Id: I5d990389e7ba24ef0861cf8ec0026ed030d4aeda
tags/v4.2.0.201601211800-r
Shawn Pearce 8 anos atrás
pai
commit
45cc76524b

+ 7
- 6
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheBuilder.java Ver arquivo

@@ -102,8 +102,9 @@ public class DirCacheBuilder extends BaseDirCacheEditor {
*/
public void add(final DirCacheEntry newEntry) {
if (newEntry.getRawMode() == 0)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().fileModeNotSetForPath
, newEntry.getPathString()));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().fileModeNotSetForPath,
newEntry.getPathString()));
beforeAdd(newEntry);
fastAdd(newEntry);
}
@@ -242,9 +243,9 @@ public class DirCacheBuilder extends BaseDirCacheEditor {
sorted = true;
}

private static IllegalStateException bad(final DirCacheEntry a,
final String msg) {
return new IllegalStateException(msg + ": " + a.getStage() + " " //$NON-NLS-1$ //$NON-NLS-2$
+ a.getPathString());
private static IllegalStateException bad(DirCacheEntry a, String msg) {
return new IllegalStateException(String.format(
"%s: %d %s", //$NON-NLS-1$
msg, Integer.valueOf(a.getStage()), a.getPathString()));
}
}

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java Ver arquivo

@@ -499,8 +499,8 @@ public class DirCacheEntry {
switch (mode.getBits() & FileMode.TYPE_MASK) {
case FileMode.TYPE_MISSING:
case FileMode.TYPE_TREE:
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().invalidModeForPath
, mode, getPathString()));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().invalidModeForPath, mode, getPathString()));
}
NB.encodeInt32(info, infoOffset + P_MODE, mode.getBits());
}

Carregando…
Cancelar
Salvar