diff options
Diffstat (limited to 'src/com/softsynth/shared')
-rw-r--r-- | src/com/softsynth/shared/time/TimeStamp.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/softsynth/shared/time/TimeStamp.java b/src/com/softsynth/shared/time/TimeStamp.java index fd054d2..6d243ed 100644 --- a/src/com/softsynth/shared/time/TimeStamp.java +++ b/src/com/softsynth/shared/time/TimeStamp.java @@ -4,9 +4,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -31,7 +31,7 @@ public class TimeStamp implements Comparable<TimeStamp> { } /** - * @return -1 if (this < t2), 0 if equal, or +1 + * @return -1 if (this < t2), 0 if equal, or +1 */ @Override public int compareTo(TimeStamp t2) { @@ -45,7 +45,7 @@ public class TimeStamp implements Comparable<TimeStamp> { /** * Create a new TimeStamp at a relative offset in seconds. - * + * * @param delta * @return earlier or later TimeStamp */ |