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

updating comments

This commit is contained in:
David Dykstal 2006-06-14 17:49:49 +00:00
parent 678e1b101f
commit 2ee927e340

View file

@ -96,7 +96,7 @@ public class SerializingProvider implements IRSEPersistenceProvider
IFile profileFile = getProfileFile(profileName, monitor); IFile profileFile = getProfileFile(profileName, monitor);
if (profileFile.exists()) if (profileFile.exists())
{ {
System.out.println("loading "+ profileFile.getLocation().toOSString() + "..."); // TODO: dwd debugging System.out.println("loading "+ profileFile.getLocation().toOSString() + "..."); // DWD debugging
try try
{ {
InputStream iStream = profileFile.getContents(); InputStream iStream = profileFile.getContents();
@ -160,7 +160,7 @@ public class SerializingProvider implements IRSEPersistenceProvider
IFile profileFile = getProfileFile(dom.getName(), monitor); IFile profileFile = getProfileFile(dom.getName(), monitor);
File osFile = profileFile.getLocation().toFile(); File osFile = profileFile.getLocation().toFile();
System.out.println("saving "+ osFile.getAbsolutePath() + "..."); // TODO: dwd debugging System.out.println("saving "+ osFile.getAbsolutePath() + "..."); // DWD debugging
try try
{ {
OutputStream oStream = new FileOutputStream(osFile); OutputStream oStream = new FileOutputStream(osFile);