Skip to content

Commit

Permalink
Removed problematic output string
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Goldader committed Jul 5, 2018
1 parent c91a040 commit 288714c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.mf
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Manifest-Version: 1.0
AutoUpdate-Show-In-Client: true
OpenIDE-Module: zipcar.emulator.uart
OpenIDE-Module-Localizing-Bundle: zipcar/emulator/uart/Bundle.properties
OpenIDE-Module-Specification-Version: 1.7.1
OpenIDE-Module-Specification-Version: 1.7.2

1 change: 0 additions & 1 deletion src/zipcar/emulator/uart/Uart.java
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ public void setString(String str) {
public void output() {
try {
byte b = (byte) sfrTX.read();
messageHandler.outputMessage(String.format("Writing: 0x%02X" + b));
request.write(b);
request.flush();
} catch (Exception e) {
Expand Down

0 comments on commit 288714c

Please sign in to comment.