1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 23:15:24 +02:00

Internalization

This commit is contained in:
Alain Magloire 2004-03-02 17:17:32 +00:00
parent f0a098779f
commit 1d67a95684
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2004-03-02 James Ciesielski
Marked strings as non-translatable.
* src/org/eclipse/cdt/internal/core/solaris/Processlist.java
2002-10-16 Alain Magloire
* library/pfind.c: Reformat to be Unix format.

View file

@ -26,7 +26,7 @@ public class ProcessList implements IProcessList {
public IProcessInfo [] getProcessList() {
Process ps;
BufferedReader psOutput;
String[] args = {"/usr/bin/ps", "-e", "-o", "pid,args"};
String[] args = {"/usr/bin/ps", "-e", "-o", "pid,args"}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
try {
ps = ProcessFactory.getFactory().exec(args);