Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.base/src/org/eclipse/help/internal/base/util/HelpProperties.java')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/util/HelpProperties.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/base/util/HelpProperties.java b/org.eclipse.help.base/src/org/eclipse/help/internal/base/util/HelpProperties.java
index 731f4a176..b178a938c 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/base/util/HelpProperties.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/base/util/HelpProperties.java
@@ -22,14 +22,14 @@ import org.eclipse.help.internal.*;
public class HelpProperties extends Properties {
private static final long serialVersionUID = 1L;
-
+
private File file = null;
protected String name = null;
/**
* Creates empty Properties for the specified plugin
- *
+ *
* @param name
* name of the file;
* @param plugin
@@ -41,7 +41,7 @@ public class HelpProperties extends Properties {
/**
* Creates empty Properties persisted in the specified directory
- *
+ *
* @param name
* name of the file;
* @param dir
@@ -55,7 +55,7 @@ public class HelpProperties extends Properties {
/**
* Restores contents of the Properties from a file.
- *
+ *
* @return true if persistant data was read in
*/
public boolean restore() {
@@ -85,7 +85,7 @@ public class HelpProperties extends Properties {
/**
* Saves contents of the table to a file.
- *
+ *
* @return true if operation was successful
*/
public boolean save() {

Back to the top