From baa0551cabe723cba0646f2c9a8d075c70c9979b Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 14 Jul 2008 15:20:06 +0000 Subject: [PATCH] Re-order param to be consistent with other constructor --- .../dd/mi/service/command/output/MIListThreadGroupsInfo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/output/MIListThreadGroupsInfo.java b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/output/MIListThreadGroupsInfo.java index b715d421d36..8d190f6afcb 100644 --- a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/output/MIListThreadGroupsInfo.java +++ b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/output/MIListThreadGroupsInfo.java @@ -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; }