Skip to content

Commit b0dae5f

Browse files
committed
Remove PropertyFileStore class - dead code
Signed-off-by: BoykoAlex <alex.boyko@broadcom.com>
1 parent 7119de8 commit b0dae5f

6 files changed

Lines changed: 0 additions & 356 deletions

File tree

eclipse-extensions/org.springframework.ide.eclipse.boot.dash.test/src/org/springframework/ide/eclipse/boot/dash/test/AllBootDashTests.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
// BootDashDockerTests.class, //50 seconds
2626
// SelectDockerDaemonDialogTest.class,
2727

28-
//New: (move down the chain later based on runtime)
29-
PropertyFileStoreTest.class,
30-
3128
//Really short (less than 2 seconds per suite):
3229
JLRMethodParserTest.class,
3330
OrderBasedComparatorTest.class,

eclipse-extensions/org.springframework.ide.eclipse.boot.dash.test/src/org/springframework/ide/eclipse/boot/dash/test/PropertyFileStoreTest.java

Lines changed: 0 additions & 141 deletions
This file was deleted.

eclipse-extensions/org.springframework.ide.eclipse.boot.dash/src/org/springframework/ide/eclipse/boot/dash/model/BootDashModelContext.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,6 @@ public abstract class BootDashModelContext {
5252

5353
public abstract SecuredCredentialsStore getSecuredCredentialsStore();
5454

55-
/**
56-
* A store for properties which is suitable for sensitive data with basic protection.
57-
* I.e. backed by a unencrypted file which is made only accessible to the current user
58-
* and protected by the os. The file is not encrypted in any way.
59-
*/
60-
public abstract IPropertyStore getPrivatePropertyStore();
61-
6255
public abstract void log(Exception e);
6356

6457
/**

eclipse-extensions/org.springframework.ide.eclipse.boot.dash/src/org/springframework/ide/eclipse/boot/dash/model/DefaultBootDashModelContext.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ public class DefaultBootDashModelContext extends BootDashModelContext {
5050

5151
private IPropertyStore viewProperties = PropertyStores.backedBy(BootDashActivator.getDefault().getPreferenceStore());
5252

53-
private IPropertyStore privateProperties = PropertyStores.createPrivateStore(BootDashActivator.getDefault().getStateLocation().append("private.properties"));
54-
5553
private BootInstallManager bootInstalls = BootInstallManager.getInstance();
5654

5755
public static BootDashModelContext create() {
@@ -116,11 +114,6 @@ public IPropertyStore getViewProperties() {
116114
return viewProperties;
117115
}
118116

119-
@Override
120-
public IPropertyStore getPrivatePropertyStore() {
121-
return privateProperties;
122-
}
123-
124117
@Override
125118
public BootInstallManager getBootInstallManager() {
126119
return bootInstalls;

eclipse-language-servers/org.springsource.ide.eclipse.commons.core/src/org/springsource/ide/eclipse/commons/core/pstore/PropertyFileStore.java

Lines changed: 0 additions & 194 deletions
This file was deleted.

eclipse-language-servers/org.springsource.ide.eclipse.commons.core/src/org/springsource/ide/eclipse/commons/core/pstore/PropertyStores.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,4 @@ public String get(String key) {
126126
};
127127
}
128128

129-
public static IPropertyStore createPrivateStore(IPath append) {
130-
return new PropertyFileStore(append.toFile());
131-
}
132-
133129
}

0 commit comments

Comments
 (0)