1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Patch from James to externalize strings.

This commit is contained in:
Alain Magloire 2004-03-01 20:09:23 +00:00
parent 8adf0dd949
commit 499f1cf3e0
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2004-03-01 James Ciesielski
Marked string as non-externalized
* src/org/eclipse/cdt/internal/core/win32/ProcessList.java
2004-02-17 Alain Magloire
Remove old Eclipse2.0 interface and

View file

@ -33,7 +33,7 @@ public class ProcessList implements IProcessList {
InputStream in = null;
IPluginDescriptor desc = CCorePlugin.getDefault().getDescriptor();
try {
URL url = desc.find(new Path("$os$/listtasks.exe"));
URL url = desc.find(new Path("$os$/listtasks.exe")); //$NON-NLS-1$
url = Platform.resolve(url);
String path = url.getFile();
File file = new File(path);