[Mulgara-svn] r1342 - trunk/src/jar/resolver-distributed/java/org/mulgara/resolver/distributed
ronald at mulgara.org
ronald at mulgara.org
Thu Oct 23 13:11:03 UTC 2008
Author: ronald
Date: 2008-10-23 06:11:01 -0700 (Thu, 23 Oct 2008)
New Revision: 1342
Modified:
trunk/src/jar/resolver-distributed/java/org/mulgara/resolver/distributed/DistributedResolverFactory.java
Log:
Minor cleanups: explicit imports, correct bracing, remove trailing whitespace.
Modified: trunk/src/jar/resolver-distributed/java/org/mulgara/resolver/distributed/DistributedResolverFactory.java
===================================================================
--- trunk/src/jar/resolver-distributed/java/org/mulgara/resolver/distributed/DistributedResolverFactory.java 2008-10-22 00:28:00 UTC (rev 1341)
+++ trunk/src/jar/resolver-distributed/java/org/mulgara/resolver/distributed/DistributedResolverFactory.java 2008-10-23 13:11:01 UTC (rev 1342)
@@ -14,7 +14,9 @@
package org.mulgara.resolver.distributed;
// Java 2 standard packages
-import java.util.*;
+import java.util.Arrays;
+import java.util.HashSet;
+import java.util.Set;
// Third party packages
import org.apache.log4j.Logger;
@@ -38,10 +40,9 @@
* @copyright © 2007 <a href="mailto:pgearon at users.sourceforge.net">Paul Gearon</a>
* @licence <a href="{@docRoot}/../../LICENCE.txt">Open Software License v3.0</a>
*/
-public class DistributedResolverFactory implements ResolverFactory
-{
+public class DistributedResolverFactory implements ResolverFactory {
/** Logger. */
- private static Logger logger = Logger.getLogger(DistributedResolverFactory.class.getName());
+ private static Logger logger = Logger.getLogger(DistributedResolverFactory.class);
/** Collection of constructed resolvers. */
private Collection<DistributedResolver> openResolvers = new HashSet<DistributedResolver>();
@@ -95,8 +96,8 @@
* @return <code>null</code> - no default graphs for this resolver
*/
public Graph[] getDefaultGraphs() { return null; }
-
-
+
+
/**
* {@inheritDoc}
* @return <code>true</code> - any constraint can be resolved against a remote server.
More information about the Mulgara-svn
mailing list