Skip to content

Commit

Permalink
Autoformatted code to get correct indentions
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Reiche committed Jun 27, 2019
1 parent 2ebc39e commit 6c4d034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/takes/facets/fork/FkRegex.java
Expand Up @@ -216,8 +216,8 @@ public Opt<Response> route(final Request req) throws Exception {
String path = new RqHref.Base(req).href().path();
if (
this.removeslash
&& path.length() > 1
&& path.charAt(path.length() - 1) == '/'
&& path.length() > 1
&& path.charAt(path.length() - 1) == '/'
) {
path = path.substring(0, path.length() - 1);
}
Expand Down

0 comments on commit 6c4d034

Please sign in to comment.