diff options
| author | Keith Packard <keithp@keithp.com> | 2010-07-29 10:48:25 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2010-07-29 10:48:25 -0700 | 
| commit | efa0e034a161f4852947cbac06537d6ba4422a0e (patch) | |
| tree | 81aa84be6cb9c5c602889b272ffaff956147a403 | |
| parent | 53c279b9e96da8b69837ae84038a78ca5707f2a5 (diff) | |
altosui: remove debug printf
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | ao-tools/altosui/AltosDeviceDialog.java | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/ao-tools/altosui/AltosDeviceDialog.java b/ao-tools/altosui/AltosDeviceDialog.java index 536a8057..c60bd7c3 100644 --- a/ao-tools/altosui/AltosDeviceDialog.java +++ b/ao-tools/altosui/AltosDeviceDialog.java @@ -152,10 +152,8 @@ public class AltosDeviceDialog extends JDialog implements ActionListener {  	//Handle clicks on the Set and Cancel buttons.  	public void actionPerformed(ActionEvent e) { -		if ("select".equals(e.getActionCommand())) { -			System.out.printf("got select action\n"); +		if ("select".equals(e.getActionCommand()))  			AltosDeviceDialog.value = (altos_device)(list.getSelectedValue()); -		}  		AltosDeviceDialog.dialog.setVisible(false);  	}  | 
