mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 17:45:24 +02:00
updating comments
This commit is contained in:
parent
678e1b101f
commit
2ee927e340
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue