Skip to content

Commit 8f903ae

Browse files
committed
checkstyle
1 parent c50a369 commit 8f903ae

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

jooby/src/main/java/io/jooby/Route.java

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,17 @@
1010
import javax.annotation.Nonnull;
1111
import javax.annotation.Nullable;
1212
import java.io.Serializable;
13-
import java.lang.annotation.Annotation;
1413
import java.lang.reflect.Type;
15-
import java.util.*;
14+
import java.util.Collection;
15+
import java.util.Collections;
16+
import java.util.Set;
17+
import java.util.HashSet;
18+
import java.util.Map;
19+
import java.util.HashMap;
20+
import java.util.List;
21+
import java.util.ArrayList;
22+
import java.util.Arrays;
23+
1624

1725
/**
1826
* Route contains information about the HTTP method, path pattern, which content types consumes and
@@ -615,7 +623,7 @@ public Route(@Nonnull String method, @Nonnull String pattern, @Nonnull Handler h
615623
}
616624

617625
/**
618-
* Attributes set to this route
626+
* Attributes set to this route.
619627
*
620628
* @return Map of attributes set to the route.
621629
*/
@@ -624,7 +632,7 @@ public Route(@Nonnull String method, @Nonnull String pattern, @Nonnull Handler h
624632
}
625633

626634
/**
627-
* Retrieve value of this specific Attribute set to this route
635+
* Retrieve value of this specific Attribute set to this route.
628636
*
629637
* @param name of the attribute to retrieve.
630638
* @return value of the specific attribute.

0 commit comments

Comments
 (0)