Skip to content
Snippets Groups Projects
Commit 851656ab authored by Jean-Yves TINEVEZ's avatar Jean-Yves TINEVEZ
Browse files

Fix compile errors with the new version of TrackMate.

parent 2eb5d20d
No related branches found
No related tags found
No related merge requests found
......@@ -514,8 +514,7 @@ public class CellContactConfigurationPanel extends ConfigurationPanel
@Override
public void run()
{
final Settings settings = new Settings();
settings.setFrom( imp );
final Settings settings = new Settings( imp );
final int frame = imp.getFrame() - 1;
settings.tstart = frame;
settings.tend = frame;
......
......@@ -327,4 +327,9 @@ public class CellContactDetectorFactory< T extends RealType< T > & NativeType< T
return ok;
}
@Override
public CellContactDetectorFactory< T > copy()
{
return new CellContactDetectorFactory<>();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment