Skip to content

Commit 34009f0

Browse files
committed
Merge pull request #1886 from arduino/ide-1.5.6-r2
Fixes for 1.5.6-r2 release
2 parents c39a6a2 + f3619c3 commit 34009f0

20 files changed

+6
-27
lines changed

app/src/cc/arduino/packages/Uploader.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
You should have received a copy of the GNU General Public License
2121
along with this program; if not, write to the Free Software Foundation,
2222
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23-
24-
$Id$
2523
*/
2624

2725
package cc.arduino.packages;

app/src/cc/arduino/packages/uploaders/SerialUploader.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
You should have received a copy of the GNU General Public License
2323
along with this program; if not, write to the Free Software Foundation,
2424
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25-
26-
$Id$
2725
*/
2826

2927
package cc.arduino.packages.uploaders;

app/src/processing/app/Serial.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public void addListener(MessageConsumer consumer) {
175175
public synchronized void serialEvent(SerialPortEvent serialEvent) {
176176
if (serialEvent.isRXCHAR()) {
177177
try {
178-
byte[] buf = port.readBytes();
178+
byte[] buf = port.readBytes(serialEvent.getEventValue());
179179
if (buf.length > 0) {
180180
if (bufferLast == buffer.length) {
181181
byte temp[] = new byte[bufferLast << 1];

app/src/processing/app/debug/Sizer.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
You should have received a copy of the GNU General Public License
2121
along with this program; if not, write to the Free Software Foundation,
2222
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23-
24-
$Id$
2523
*/
2624

2725
package processing.app.debug;

app/src/processing/app/debug/TargetPackage.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
You should have received a copy of the GNU General Public License
1919
along with this program; if not, write to the Free Software Foundation,
2020
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422
package processing.app.debug;
2523

app/src/processing/app/debug/TargetPlatform.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
You should have received a copy of the GNU General Public License
1919
along with this program; if not, write to the Free Software Foundation,
2020
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422
package processing.app.debug;
2523

app/src/processing/app/helpers/PreferencesMap.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
You should have received a copy of the GNU General Public License
1919
along with this program; if not, write to the Free Software Foundation,
2020
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422
package processing.app.helpers;
2523

app/src/processing/app/helpers/StringReplacer.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
You should have received a copy of the GNU General Public License
1919
along with this program; if not, write to the Free Software Foundation,
2020
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422
package processing.app.helpers;
2523

app/src/processing/app/syntax/CTokenMarker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* C token marker.
1616
*
1717
* @author Slava Pestov
18-
* @version $Id: CTokenMarker.java 1268 2005-04-09 02:30:37Z benfry $
1918
*/
2019
public class CTokenMarker extends TokenMarker
2120
{

app/src/processing/app/syntax/DefaultInputHandler.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
* The default input handler. It maps sequences of keystrokes into actions
2020
* and inserts key typed events into the text area.
2121
* @author Slava Pestov
22-
* @version $Id: DefaultInputHandler.java 1438 2005-05-11 08:34:16Z benfry $
2322
*/
2423
public class DefaultInputHandler extends InputHandler
2524
{

0 commit comments

Comments
 (0)