Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
fix for change in cliforce
Browse files Browse the repository at this point in the history
  • Loading branch information
sclasen committed Mar 24, 2011
1 parent 3d33ede commit e82248b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/test/java/com/force/maven/plugin/MojoTestModule.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
import com.force.cliforce.MainModule; import com.force.cliforce.MainModule;


import javax.inject.Singleton; import javax.inject.Singleton;
import java.util.Collections;
import java.util.Set;


public class MojoTestModule extends MainModule { public class MojoTestModule extends MainModule {


Expand All @@ -14,7 +16,7 @@ public void bindConnectionManager() {
} }


@Override @Override
public String[] provideInternalPlugins() { public Set<String> provideInternalPlugins() {
return new String[0]; return Collections.emptySet();
} }
} }

0 comments on commit e82248b

Please sign in to comment.