From 288714cc340cfa244f120e7a9c1eb689ea5cf6e5 Mon Sep 17 00:00:00 2001 From: Neil Goldader Date: Thu, 5 Jul 2018 11:30:22 -0700 Subject: [PATCH] Removed problematic output string --- manifest.mf | 2 +- src/zipcar/emulator/uart/Uart.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/manifest.mf b/manifest.mf index 80213fe..1fa85de 100644 --- a/manifest.mf +++ b/manifest.mf @@ -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 diff --git a/src/zipcar/emulator/uart/Uart.java b/src/zipcar/emulator/uart/Uart.java index 7710807..7628c6c 100644 --- a/src/zipcar/emulator/uart/Uart.java +++ b/src/zipcar/emulator/uart/Uart.java @@ -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) {