Skip to content

Commit

Permalink
Merge pull request #305 from bls337/main
Browse files Browse the repository at this point in the history
remove print statements
  • Loading branch information
bls337 authored Jan 28, 2025
2 parents b5fb0a4 + e439090 commit 64bbbc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ private double getGalvoPositionY() {

@Override
public void update(String topic, Object value) {
System.out.println("topic: " + topic + " obj:" + value);
//System.out.println("topic: " + topic + " obj:" + value);
EventQueue.invokeLater(() -> {
lblPosition_.setText(String.format("%.3f %s", updateMethod_.update(), units_));
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public JoystickPanel(final LightSheetManager model) {
}

private void createUserInterface() {
final JLabel lblJoystick = new JLabel("JoysticK:");
final JLabel lblJoystick = new JLabel("Joystick:");
final JLabel lblLeftWheel = new JLabel("Left Wheel:");
final JLabel lblRightWheel = new JLabel("Right Wheel:");

Expand Down

0 comments on commit 64bbbc8

Please sign in to comment.