1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Adding some error checking code related to the launching of avr-size because some people were having trouble on Windows.

This commit is contained in:
David A. Mellis
2006-12-25 18:00:00 +00:00
parent f723bfbe56
commit 1433c517cf
2 changed files with 7 additions and 1 deletions

View File

@ -66,6 +66,8 @@ public class RunnerException extends Exception {
* in each of the constructors above.
*/
static public final String massage(String msg) {
if (msg == null)
return "";
if (msg.indexOf("java.lang.") == 0) {
//int dot = msg.lastIndexOf('.');
msg = msg.substring("java.lang.".length());