Skip to content

Commit

Permalink
[JENKINS-19418] Minor formatting fixes.
Browse files Browse the repository at this point in the history
(cherry picked from commit d12b16c)
  • Loading branch information
olivierdagenais authored and olivergondza committed Sep 30, 2013
1 parent b6dfb7a commit 33ad058
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Expand Up @@ -497,9 +497,7 @@ public R search(final int n, final Direction d) {
case EXACT:
if (hi<=0) return null;
R r = load(idOnDisk.get(hi-1), null);
if (r==null) {
return null;
}
if (r==null) return null;

int found = getNumberOf(r);
if (found==n)
Expand Down
Expand Up @@ -59,7 +59,7 @@ public class AbstractLazyLoadRunMapTest extends Assert {
@Override
public FakeMap make() {
assert getDir()!=null;
return new FakeMap(getDir()){
return new FakeMap(getDir()) {
@Override
protected BuildReference<Build> createReference(Build r) {
return new BuildReference<Build>(getIdOf(r), /* pretend referent expired */ null);
Expand Down

0 comments on commit 33ad058

Please sign in to comment.