Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
HdbTdbArchivingApi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Tango controls archiving
HdbTdbArchivingApi
Commits
1a5101e7
Commit
1a5101e7
authored
Apr 13, 2021
by
Gwenaelle ABEILLE
Browse files
Options
Downloads
Patches
Plain Diff
remove unsused code
parent
110c88f3
No related branches found
Tags
snapArchivingServers-1.7.3
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/fr/soleil/archiving/hdbtdb/api/management/attributes/hdb/insert/SynchronChronometer.java
+0
-25
0 additions, 25 deletions
...management/attributes/hdb/insert/SynchronChronometer.java
with
0 additions
and
25 deletions
src/main/java/fr/soleil/archiving/hdbtdb/api/management/attributes/hdb/insert/SynchronChronometer.java
deleted
100644 → 0
+
0
−
25
View file @
110c88f3
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
();
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment