Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java23
1 files changed, 20 insertions, 3 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
index 2105d81b8..3815db496 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
@@ -802,17 +802,34 @@ public class LaunchManager extends PlatformObject implements ILaunchManager, IRe
value += line;
}
}
+ line = reader.readLine();
}
else {
int separator = line.indexOf('=');
if (separator > 0) {
key = line.substring(0, separator);
value = line.substring(separator + 1);
-
+ line = reader.readLine();
+ if(line != null) {
+ //this line has a '=' read ahead to check next line for '=', might be broken on more than one line
+ separator = line.indexOf('=');
+ while(separator < 0) {
+ value += line.trim();
+ line = reader.readLine();
+ if(line == null) {
+ //if next line read is the end of the file quit the loop
+ break;
+ }
+ separator = line.indexOf('=');
+ }
+ }
}
}
- cache.put(key, value);
- line = reader.readLine();
+ if(key != null) {
+ cache.put(key, value);
+ key = null;
+ value = null;
+ }
}
reader.close();
}

Back to the top