From eac9bde6c1e111320c6fcb2a3bdf70bee0003b59 Mon Sep 17 00:00:00 2001 From: Rogiel Date: Sun, 18 Sep 2011 20:05:34 -0300 Subject: [PATCH] Default ConfigurationService is now XMLConfigurationService The new default Configuration Service is based on XML configuration files instead of the plain old properties files. XML allows better flexibility and more with DTD it is possible to do on-editting validation. --- src/main/java/com/l2jserver/service/ServiceModule.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/l2jserver/service/ServiceModule.java b/src/main/java/com/l2jserver/service/ServiceModule.java index 3af365bb7..5d83b7dec 100644 --- a/src/main/java/com/l2jserver/service/ServiceModule.java +++ b/src/main/java/com/l2jserver/service/ServiceModule.java @@ -22,7 +22,7 @@ import com.google.inject.Scopes; import com.l2jserver.service.cache.CacheService; import com.l2jserver.service.cache.SoftCacheService; import com.l2jserver.service.configuration.ConfigurationService; -import com.l2jserver.service.configuration.ProxyConfigurationService; +import com.l2jserver.service.configuration.XMLConfigurationService; import com.l2jserver.service.core.Log4JLoggingService; import com.l2jserver.service.core.LoggingService; import com.l2jserver.service.core.threading.ThreadService; @@ -80,7 +80,7 @@ public class ServiceModule extends AbstractModule { bind(VFSService.class).to(Java7VFSService.class).in(Scopes.SINGLETON); bind(ThreadService.class).to(ThreadServiceImpl.class).in( Scopes.SINGLETON); - bind(ConfigurationService.class).to(ProxyConfigurationService.class) + bind(ConfigurationService.class).to(XMLConfigurationService.class) .in(Scopes.SINGLETON); bind(CacheService.class).to(SoftCacheService.class) .in(Scopes.SINGLETON);