Skip to content
This repository has been archived by the owner on Nov 19, 2019. It is now read-only.

Commit

Permalink
Use the Java version of the plugin by default
Browse files Browse the repository at this point in the history
(Probably) fixes: #3
  • Loading branch information
gousiosg committed Sep 18, 2013
1 parent ea1c1fd commit e207573
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ public class Activator implements BundleActivator {

public void start(BundleContext bc) throws Exception {

//registration = bc.registerService(FindbugsMetrics.class.getName(),
// new FindbugsMetrics(bc), null);
registration = bc.registerService(
gr.aueb.metrics.findbugsscala.FindBugsMetrics.class.getName(),
new gr.aueb.metrics.findbugsscala.FindBugsMetrics(bc), null);
registration = bc.registerService(FindbugsMetrics.class.getName(),
new FindbugsMetrics(bc), null);
// registration = bc.registerService(
// gr.aueb.metrics.findbugsscala.FindBugsMetrics.class.getName(),
// new gr.aueb.metrics.findbugsscala.FindBugsMetrics(bc), null);
}

public void stop(BundleContext context) throws Exception {
Expand Down

0 comments on commit e207573

Please sign in to comment.