Source formatting and clean-up

This commit is contained in:
Phillip Webb
2013-07-05 15:49:43 -07:00
parent 40bf334871
commit d039822064
9 changed files with 21 additions and 8 deletions

View File

@@ -29,7 +29,8 @@ public abstract class AstUtils {
/**
* Determine if an {@link AnnotatedNode} has one or more of the specified annotations.
*/
public static boolean hasAtLeastOneAnnotation(AnnotatedNode node, String... annotations) {
public static boolean hasAtLeastOneAnnotation(AnnotatedNode node,
String... annotations) {
for (AnnotationNode annotationNode : node.getAnnotations()) {
for (String annotation : annotations) {