1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-15 12:29:26 +01:00

Fixed the missing line for messageformat args.

This commit is contained in:
ricklon 2011-06-16 23:17:08 -04:00
parent 72c4404c6d
commit a57f35fb51

View File

@ -900,6 +900,7 @@ public class Compiler implements MessageConsumer {
corePath, corePath,
configPreferences.get("ldscript"), configPreferences.get("ldscript"),
}; };
commandString = compileFormat.format( Args );
String[] commandArray = commandString.split(","); String[] commandArray = commandString.split(",");
System.out.println("commandString: " + commandString); System.out.println("commandString: " + commandString);
for (int ii = 0; ii < commandArray.length; ii++) for (int ii = 0; ii < commandArray.length; ii++)