Skip to content

Commit

Permalink
#782: Polished
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed Dec 5, 2013
1 parent a655d36 commit c8c4905
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -20,11 +20,11 @@

import org.apache.maven.plugin.logging.Log;

public class CountDownLatchMojoLifecycle extends DefaultMojoLifecycle {
public class CountdownLatchMojoLifecycle extends DefaultMojoLifecycle {

private final CountDownLatch latch;

public CountDownLatchMojoLifecycle(Log log, CountDownLatch latch) {
public CountdownLatchMojoLifecycle(Log log, CountDownLatch latch) {
super(log);
this.latch = latch;
}
Expand Down
Expand Up @@ -54,7 +54,7 @@ public class TestMojo extends CamelMojo {

@Override
protected MojoLifecycle createMojoLifecycle() {
return new CountDownLatchMojoLifecycle(getLog(), latch);
return new CountdownLatchMojoLifecycle(getLog(), latch);
}

@Override
Expand Down

0 comments on commit c8c4905

Please sign in to comment.