From 9d7bc31f0d14bd9bfdf69dd675cab01e4a4d7048 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 17 Jul 2011 16:35:22 +0000 Subject: [PATCH] polishing --- .../type/filter/AbstractTypeHierarchyTraversingFilter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org.springframework.core/src/main/java/org/springframework/core/type/filter/AbstractTypeHierarchyTraversingFilter.java b/org.springframework.core/src/main/java/org/springframework/core/type/filter/AbstractTypeHierarchyTraversingFilter.java index 87d1411a0b..bebdb7dd88 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/type/filter/AbstractTypeHierarchyTraversingFilter.java +++ b/org.springframework.core/src/main/java/org/springframework/core/type/filter/AbstractTypeHierarchyTraversingFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2007 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,8 +26,8 @@ import org.springframework.core.type.classreading.MetadataReader; * Type filter that is aware of traversing over hierarchy. * *

This filter is useful when matching needs to be made based on potentially the - * whole class/interface hierarchy. The algorithm employed uses succeed-fast - * strategy i.e. if at anytime a match is declared, no further processing is + * whole class/interface hierarchy. The algorithm employed uses a succeed-fast + * strategy: if at any time a match is declared, no further processing is * carried out. * * @author Ramnivas Laddad