1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Re-order param to be consistent with other constructor

This commit is contained in:
Marc Khouzam 2008-07-14 15:20:06 +00:00
parent 432390d270
commit baa0551cab

View file

@ -28,13 +28,13 @@ public class MIListThreadGroupsInfo extends MIInfo {
public ThreadGroupInfo(String name, String pidStr) {
try {
pid = Integer.parseInt(pidStr);
this.pid = Integer.parseInt(pidStr);
} catch (NumberFormatException e) {
}
this.name = name;
}
public ThreadGroupInfo(int pid, String name) {
public ThreadGroupInfo(String name, int pid) {
this.pid = pid;
this.name = name;
}