Author: simonetripodi Date: Sat Apr 2 21:35:44 2011 New Revision: 1088136 URL: http://svn.apache.org/viewvc?rev=1088136&view=rev Log: removed trailing spaces
Modified: commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/DiscoverServiceNames.java Modified: commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/DiscoverServiceNames.java URL: http://svn.apache.org/viewvc/commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/DiscoverServiceNames.java?rev=1088136&r1=1088135&r2=1088136&view=diff ============================================================================== --- commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/DiscoverServiceNames.java (original) +++ commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/DiscoverServiceNames.java Sat Apr 2 21:35:44 2011 @@ -23,7 +23,7 @@ import org.apache.commons.discovery.reso /** * Provide JDK 1.3 style service discovery... - * + * * The caller will first configure the discoverer by creating a * root Discoverer for the files. * @@ -37,40 +37,40 @@ public class DiscoverServiceNames implements ResourceNameDiscover { protected static final String SERVICE_HOME = "META-INF/services/"; - + /** Construct a new service discoverer */ public DiscoverServiceNames() { super(SERVICE_HOME, null); } - + /** * Construct a new resource discoverer */ public DiscoverServiceNames(String prefix, String suffix) { super((prefix == null) ? SERVICE_HOME : SERVICE_HOME + prefix, suffix); } - + /** * Construct a new resource discoverer */ public DiscoverServiceNames(ClassLoaders loaders) { super(loaders, SERVICE_HOME, null); } - + /** * Construct a new resource discoverer */ public DiscoverServiceNames(ClassLoaders loaders, String prefix, String suffix) { super(loaders, (prefix == null) ? SERVICE_HOME : SERVICE_HOME + prefix, suffix); } - + /** Construct a new service discoverer */ public DiscoverServiceNames(ResourceDiscover discoverer) { super(discoverer, SERVICE_HOME, null); } - + /** Construct a new service discoverer */ public DiscoverServiceNames(ResourceDiscover discoverer, String prefix, String suffix) {