Skip to content

Commit 602cbde

Browse files
committed
Bump spotless to 1.3.3 and license to 2016.
1 parent 32327bc commit 602cbde

88 files changed

Lines changed: 134 additions & 138 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2121

2222

2323
All code after tags/original:
24-
Copyright (c) 2015, DiffPlug
24+
Copyright (c) 2016, DiffPlug
2525
All rights reserved.
2626

2727
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the

build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
// osgi
33
id "org.jruyi.osgibnd" version "0.4.0"
44
// code formatting
5-
id "com.diffplug.gradle.spotless" version "1.3.1"
5+
id "com.diffplug.gradle.spotless" version "1.3.3"
66
// bintray uploading
77
id "com.jfrog.bintray" version "1.3.1"
88
// for downloading JRE6
@@ -174,10 +174,6 @@ spotless {
174174
licenseHeaderFile 'spotless.license.java' // License header file
175175
importOrderFile 'spotless.importorder' // An import ordering file, exported from Eclipse
176176
eclipseFormatFile 'spotless.eclipseformat.xml' // XML file dumped out by the Eclipse formatter
177-
// Eclipse formatter puts excess whitespace after lambda blocks
178-
// funcThatTakesLambdas(x -> {} , y -> {} ) // what Eclipse does
179-
// funcThatTakesLambdas(x -> {}, y -> {}) // what I wish Eclipse did
180-
custom 'Lambda fix', { it.replace('} )', '})').replace('} ,', '},') }
181177
}
182178
format 'misc', {
183179
target '**/.gitignore', '**/*.gradle', '**/*.md', '**/*.sh'

spotless.license.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
22
* Code licensed under new-style BSD (see LICENSE).
33
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
4-
* All code after tags/original: Copyright (c) 2015, DiffPlug
4+
* All code after tags/original: Copyright (c) 2016, DiffPlug
55
*/

src/com/mathworks/jmi/Matlab.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Code licensed under new-style BSD (see LICENSE).
33
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
4-
* All code after tags/original: Copyright (c) 2015, DiffPlug
4+
* All code after tags/original: Copyright (c) 2016, DiffPlug
55
*/
66
package com.mathworks.jmi;
77

src/com/mathworks/jmi/NativeMatlab.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Code licensed under new-style BSD (see LICENSE).
33
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
4-
* All code after tags/original: Copyright (c) 2015, DiffPlug
4+
* All code after tags/original: Copyright (c) 2016, DiffPlug
55
*/
66
package com.mathworks.jmi;
77

src/matlabcontrol/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Code licensed under new-style BSD (see LICENSE).
33
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
4-
* All code after tags/original: Copyright (c) 2015, DiffPlug
4+
* All code after tags/original: Copyright (c) 2016, DiffPlug
55
*/
66
package matlabcontrol;
77

src/matlabcontrol/JMIValidator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Code licensed under new-style BSD (see LICENSE).
33
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
4-
* All code after tags/original: Copyright (c) 2015, DiffPlug
4+
* All code after tags/original: Copyright (c) 2016, DiffPlug
55
*/
66
package matlabcontrol;
77

src/matlabcontrol/JMIWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Code licensed under new-style BSD (see LICENSE).
33
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
4-
* All code after tags/original: Copyright (c) 2015, DiffPlug
4+
* All code after tags/original: Copyright (c) 2016, DiffPlug
55
*/
66
package matlabcontrol;
77

src/matlabcontrol/JMIWrapperRemote.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Code licensed under new-style BSD (see LICENSE).
33
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
4-
* All code after tags/original: Copyright (c) 2015, DiffPlug
4+
* All code after tags/original: Copyright (c) 2016, DiffPlug
55
*/
66
package matlabcontrol;
77

src/matlabcontrol/JMIWrapperRemoteImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Code licensed under new-style BSD (see LICENSE).
33
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
4-
* All code after tags/original: Copyright (c) 2015, DiffPlug
4+
* All code after tags/original: Copyright (c) 2016, DiffPlug
55
*/
66
package matlabcontrol;
77

0 commit comments

Comments
 (0)