Skip to content

Commit

Permalink
Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
hwellmann committed Mar 4, 2014
1 parent 94c31fc commit 382302a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ public class PaxExamTomcat extends Tomcat {

private static final String[] CONTEXT_XML = {
"src/test/resources/META-INF/context.xml",
"src/main/webapp/META-INF/context.xml", };
"src/main/webapp/META-INF/context.xml"
};

@Override
public Context addWebapp(Host host, String url, String name, String path) {
Expand All @@ -53,7 +54,8 @@ public Context addWebapp(Host host, String url, String name, String path) {

if (host == null) {
getHost().addChild(ctx);
} else {
}
else {
host.addChild(ctx);
}

Expand Down

0 comments on commit 382302a

Please sign in to comment.