1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 17:45:24 +02:00

Recommenting for later fix.

This commit is contained in:
David Dykstal 2006-06-14 17:49:10 +00:00
parent 2325f2d24f
commit 678e1b101f

View file

@ -87,18 +87,18 @@ public class RSEPersistenceManager implements IRSEPersistenceManager
try { try {
provider = (IRSEPersistenceProvider) providerCandidate.createExecutableExtension("class"); provider = (IRSEPersistenceProvider) providerCandidate.createExecutableExtension("class");
} catch (CoreException e) { } catch (CoreException e) {
RSEUIPlugin.logError("Exception loading persistence provider", e); // TODO: dwd nls RSEUIPlugin.logError("Exception loading persistence provider", e); // DWD nls
} }
} }
} else { } else {
RSEUIPlugin.logError("Missing id attribute in persistenceProvider element"); // TODO: dwd nls RSEUIPlugin.logError("Missing id attribute in persistenceProvider element"); // DWD nls
} }
} else { } else {
RSEUIPlugin.logError("Invalid element in persistenceProviders extension point"); // TODO: dwd nls RSEUIPlugin.logError("Invalid element in persistenceProviders extension point"); // DWD nls
} }
} }
if (provider == null) { if (provider == null) {
RSEUIPlugin.logError("Persistence provider not found."); // TODO: dwd nls RSEUIPlugin.logError("Persistence provider not found."); // DWD nls
} }
loadedProviders.put(id, provider); // even if provider is null loadedProviders.put(id, provider); // even if provider is null
} }
@ -241,7 +241,7 @@ public class RSEPersistenceManager implements IRSEPersistenceManager
public boolean restore(ISystemFilterPool filterPool) public boolean restore(ISystemFilterPool filterPool)
{ {
System.out.println("restore filterpool"); System.out.println("restore filterpool");
// TODO: dwd function // DWD function Is this method really needed?
return false; return false;
} }
@ -249,7 +249,7 @@ public class RSEPersistenceManager implements IRSEPersistenceManager
public boolean commit(ISystemFilter filter) public boolean commit(ISystemFilter filter)
{ {
System.out.println("commit filter"); System.out.println("commit filter");
// TODO: dwd function // DWD function Is this method really needed?
/* /*
if (filter.isDirty()) if (filter.isDirty())
{ {
@ -269,7 +269,7 @@ public class RSEPersistenceManager implements IRSEPersistenceManager
public ISystemFilterPool restoreFilterPool(String name) public ISystemFilterPool restoreFilterPool(String name)
{ {
System.out.println("restore filter pool "+name); System.out.println("restore filter pool "+name);
// TODO: dwd function // DWD function is this method really needed?
return null; return null;
} }
@ -443,7 +443,7 @@ public class RSEPersistenceManager implements IRSEPersistenceManager
if (provider != null) { if (provider != null) {
dom = provider.loadRSEDOM(domName, null); dom = provider.loadRSEDOM(domName, null);
} else { } else {
RSEUIPlugin.logError("Persistence provider is not available."); // TODO: dwd NLS RSEUIPlugin.logError("Persistence provider is not available."); // DWD NLS
} }
return dom; return dom;
} }