removed injection classes/libraries as not needed

This commit is contained in:
2013-10-15 15:55:47 +02:00
parent 63e681c3bb
commit b65764ac57
2 changed files with 0 additions and 20 deletions
-6
View File
@@ -11,12 +11,6 @@
<artifactId>guava</artifactId>
<version>15.0</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>ch.psi</groupId>
<artifactId>jcae</artifactId>
@@ -1,14 +0,0 @@
package ch.psi.fda.aq;
import ch.psi.jcae.ChannelService;
import ch.psi.jcae.impl.DefaultChannelService;
import com.google.inject.AbstractModule;
public class AcquisitionModule extends AbstractModule {
@Override
protected void configure() {
bind(ChannelService.class).toInstance(new DefaultChannelService());
}
}