Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/RegistryTimestamp.java')
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/RegistryTimestamp.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/RegistryTimestamp.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/RegistryTimestamp.java
index e53bb99fb..a412eec9b 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/RegistryTimestamp.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/RegistryTimestamp.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -44,7 +44,7 @@ public final class RegistryTimestamp {
/**
* Set value of the aggregated timestamp.
- * @param timestamp the aggregated timestamp of the current registry contents
+ * @param timestamp the aggregated timestamp of the current registry contents
*/
public void set(long timestamp) {
aggregateTimestamp = timestamp;
@@ -62,14 +62,14 @@ public final class RegistryTimestamp {
/**
* Determines if the aggregate timestamp was modified using add() or remove()
* methods.
- * @return true: the timestamp was modified after the last set/reset
+ * @return true: the timestamp was modified after the last set/reset
*/
public boolean isModifed() {
return modified;
}
/**
- * Add individual contribution timestamp to the aggregated timestamp.
+ * Add individual contribution timestamp to the aggregated timestamp.
* @param timestamp the time stamp of the contribution being added to the registry
*/
public void add(long timestamp) {

Back to the top