Skip to content
Snippets Groups Projects
Commit 1a5101e7 authored by Gwenaelle ABEILLE's avatar Gwenaelle ABEILLE
Browse files

remove unsused code

parent 110c88f3
No related branches found
No related merge requests found
package fr.soleil.archiving.hdbtdb.api.management.attributes.hdb.insert;
/**
* A {@link Chronometer} with synchronized methods
*
* @author GIRARDOT
*/
public class SynchronChronometer extends Chronometer {
@Override
public synchronized void start(long duration) {
super.start(duration);
}
@Override
public synchronized void stop() {
super.stop();
}
@Override
public synchronized boolean isOver() {
return super.isOver();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment