Skip to content

Commit a1e223a

Browse files
author
Federico Fissore
committed
License headers fixes
1 parent d0d9dfc commit a1e223a

File tree

3 files changed

+91
-42
lines changed

3 files changed

+91
-42
lines changed

arduino-core/src/cc/arduino/MessageConsumerOutputStream.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
/*
2+
* This file is part of Arduino.
3+
*
4+
* Copyright 2015 Arduino LLC (http://www.arduino.cc/)
5+
*
6+
* Arduino is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 2 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program; if not, write to the Free Software
18+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*
20+
* As a special exception, you may use this file as part of a free software
21+
* library without restriction. Specifically, if other files instantiate
22+
* templates or use macros or inline functions from this file, or you compile
23+
* this file and link it with other files to produce an executable, this
24+
* file does not by itself cause the resulting executable to be covered by
25+
* the GNU General Public License. This exception does not however
26+
* invalidate any other reasons why the executable file might be covered by
27+
* the GNU General Public License.
28+
*/
29+
130
package cc.arduino;
231

332
import processing.app.debug.MessageConsumer;

arduino-core/src/cc/arduino/packages/Uploader.java

Lines changed: 30 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,34 @@
11
/*
2-
Uploader - abstract uploading baseclass (common to both uisp and avrdude)
3-
Part of the Arduino project - http://www.arduino.cc/
4-
5-
Copyright (c) 2004-05
6-
Hernando Barragan
7-
8-
This program is free software; you can redistribute it and/or modify
9-
it under the terms of the GNU General Public License as published by
10-
the Free Software Foundation; either version 2 of the License, or
11-
(at your option) any later version.
12-
13-
This program is distributed in the hope that it will be useful,
14-
but WITHOUT ANY WARRANTY; without even the implied warranty of
15-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16-
GNU General Public License for more details.
17-
18-
You should have received a copy of the GNU General Public License
19-
along with this program; if not, write to the Free Software Foundation,
20-
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
*/
2+
* This file is part of Arduino.
3+
*
4+
* Uploader - abstract uploading baseclass (common to both uisp and avrdude)
5+
*
6+
* Copyright (c) 2004-05
7+
* Hernando Barragan
8+
*
9+
* Arduino is free software; you can redistribute it and/or modify
10+
* it under the terms of the GNU General Public License as published by
11+
* the Free Software Foundation; either version 2 of the License, or
12+
* (at your option) any later version.
13+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
*
19+
* You should have received a copy of the GNU General Public License
20+
* along with this program; if not, write to the Free Software
21+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22+
*
23+
* As a special exception, you may use this file as part of a free software
24+
* library without restriction. Specifically, if other files instantiate
25+
* templates or use macros or inline functions from this file, or you compile
26+
* this file and link it with other files to produce an executable, this
27+
* file does not by itself cause the resulting executable to be covered by
28+
* the GNU General Public License. This exception does not however
29+
* invalidate any other reasons why the executable file might be covered by
30+
* the GNU General Public License.
31+
*/
2232

2333
package cc.arduino.packages;
2434

arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java

Lines changed: 32 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,36 @@
11
/*
2-
BasicUploader - generic command line uploader implementation
3-
Part of the Arduino project - http://www.arduino.cc/
4-
5-
Copyright (c) 2004-05
6-
Hernando Barragan
7-
Copyright (c) 2012
8-
Cristian Maglie <c.maglie@arduino.cc>
9-
10-
This program is free software; you can redistribute it and/or modify
11-
it under the terms of the GNU General Public License as published by
12-
the Free Software Foundation; either version 2 of the License, or
13-
(at your option) any later version.
14-
15-
This program is distributed in the hope that it will be useful,
16-
but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
GNU General Public License for more details.
19-
20-
You should have received a copy of the GNU General Public License
21-
along with this program; if not, write to the Free Software Foundation,
22-
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23-
*/
2+
* This file is part of Arduino.
3+
*
4+
* BasicUploader - generic command line uploader implementation
5+
*
6+
* Copyright (c) 2004-05
7+
* Hernando Barragan
8+
* Copyright (c) 2012
9+
* Cristian Maglie <c.maglie@arduino.cc>
10+
*
11+
* Arduino is free software; you can redistribute it and/or modify
12+
* it under the terms of the GNU General Public License as published by
13+
* the Free Software Foundation; either version 2 of the License, or
14+
* (at your option) any later version.
15+
*
16+
* This program is distributed in the hope that it will be useful,
17+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
* GNU General Public License for more details.
20+
*
21+
* You should have received a copy of the GNU General Public License
22+
* along with this program; if not, write to the Free Software
23+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24+
*
25+
* As a special exception, you may use this file as part of a free software
26+
* library without restriction. Specifically, if other files instantiate
27+
* templates or use macros or inline functions from this file, or you compile
28+
* this file and link it with other files to produce an executable, this
29+
* file does not by itself cause the resulting executable to be covered by
30+
* the GNU General Public License. This exception does not however
31+
* invalidate any other reasons why the executable file might be covered by
32+
* the GNU General Public License.
33+
*/
2434

2535
package cc.arduino.packages.uploaders;
2636

0 commit comments

Comments
 (0)