Skip to content

Commit

Permalink
Change import in SpotTrackIDFeatureComputer from io.humble.ferry.Atom…
Browse files Browse the repository at this point in the history
…icInteger to java.util.concurrent.atomic.AtomicInteger;

* The import of io.humble.ferry.AtomicInteger creates an unnecessary dependency on humble video library
* The java.util.concurrent.atomic.AtomicInteger which is part of java is sufficient in this this class
  • Loading branch information
stefanhahmann committed Feb 21, 2024
1 parent fa7111f commit e94c573
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import org.scijava.plugin.Parameter;
import org.scijava.plugin.Plugin;

import io.humble.ferry.AtomicInteger;
import java.util.concurrent.atomic.AtomicInteger;

@Plugin( type = MamutFeatureComputer.class )
public class SpotTrackIDFeatureComputer implements MamutFeatureComputer
Expand Down

0 comments on commit e94c573

Please sign in to comment.