Skip to content

Commit 06889a0

Browse files
committed
Fix typo.
1 parent 92298d4 commit 06889a0

File tree

1 file changed

+6
-3
lines changed
  • chemclipse/plugins/org.eclipse.chemclipse.chromatogram.alignment.model/src/org/eclipse/chemclipse/chromatogram/alignment/model/core

1 file changed

+6
-3
lines changed

chemclipse/plugins/org.eclipse.chemclipse.chromatogram.alignment.model/src/org/eclipse/chemclipse/chromatogram/alignment/model/core/RetentionIndex.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ public class RetentionIndex implements IRetentionIndex, Comparable<IRetentionInd
2323
private String name = "";
2424

2525
public RetentionIndex() {
26+
2627
}
2728

2829
public RetentionIndex(final int retentionTime, final float index) {
29-
setCkeckedRetentionTime(retentionTime);
30+
31+
setCheckedRetentionTime(retentionTime);
3032
setCheckedIndex(index);
3133
}
3234

3335
public RetentionIndex(final int retentionTime, final float index, final String name) {
36+
3437
this(retentionTime, index);
3538
this.name = name;
3639
}
@@ -47,7 +50,7 @@ public int getRetentionTime() {
4750
@Override
4851
public void setRetentionTime(final int retentionTime) {
4952

50-
setCkeckedRetentionTime(retentionTime);
53+
setCheckedRetentionTime(retentionTime);
5154
}
5255

5356
/**
@@ -56,7 +59,7 @@ public void setRetentionTime(final int retentionTime) {
5659
* @param retentionTime
5760
*/
5861
// @edu.umd.cs.findbugs.annotations.SuppressWarnings("INT_VACUOUS_COMPARISON")
59-
private void setCkeckedRetentionTime(final int retentionTime) {
62+
private void setCheckedRetentionTime(final int retentionTime) {
6063

6164
/*
6265
* Findbugs finds a "INT_VACUOUS_COMPARISON" bug here, but it's ok.<br/>

0 commit comments

Comments
 (0)