Skip to content

Commit 31df424

Browse files
committed
Happy New Year 2016
1 parent b917ce3 commit 31df424

Some content is hidden

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

41 files changed

+121
-117
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009 - 2015, Board of Regents of the University of
1+
Copyright (c) 2009 - 2016, Board of Regents of the University of
22
Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
33
Institute of Molecular Cell Biology and Genetics.
44
All rights reserved.

src/main/java/org/scijava/convert/NumberConverters.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%
99
* Redistribution and use in source and binary forms, with or without
1010
* modification, are permitted provided that the following conditions are met:
11-
*
11+
*
1212
* 1. Redistributions of source code must retain the above copyright notice,
1313
* this list of conditions and the following disclaimer.
1414
* 2. Redistributions in binary form must reproduce the above copyright notice,
1515
* this list of conditions and the following disclaimer in the documentation
1616
* and/or other materials provided with the distribution.
17-
*
17+
*
1818
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1919
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2020
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE

src/main/java/org/scijava/convert/NumberToBigDecimalConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%
@@ -52,4 +52,4 @@ public Class<BigDecimal> getOutputType() {
5252
return BigDecimal.class;
5353
}
5454

55-
}
55+
}

src/main/java/org/scijava/convert/NumberToBigIntegerConverter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%
99
* Redistribution and use in source and binary forms, with or without
1010
* modification, are permitted provided that the following conditions are met:
11-
*
11+
*
1212
* 1. Redistributions of source code must retain the above copyright notice,
1313
* this list of conditions and the following disclaimer.
1414
* 2. Redistributions in binary form must reproduce the above copyright notice,
1515
* this list of conditions and the following disclaimer in the documentation
1616
* and/or other materials provided with the distribution.
17-
*
17+
*
1818
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1919
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2020
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE

src/main/java/org/scijava/convert/NumberToDoubleConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%

src/main/java/org/scijava/convert/NumberToFloatConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%
@@ -48,4 +48,4 @@ public Class<Float> getOutputType() {
4848
return Float.class;
4949
}
5050

51-
}
51+
}

src/main/java/org/scijava/convert/NumberToIntegerConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%
@@ -48,4 +48,4 @@ public Class<Integer> getOutputType() {
4848
return Integer.class;
4949
}
5050

51-
}
51+
}

src/main/java/org/scijava/convert/NumberToLongConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%
@@ -48,4 +48,4 @@ public Class<Long> getOutputType() {
4848
return Long.class;
4949
}
5050

51-
}
51+
}

src/main/java/org/scijava/convert/NumberToNumberConverter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%
99
* Redistribution and use in source and binary forms, with or without
1010
* modification, are permitted provided that the following conditions are met:
11-
*
11+
*
1212
* 1. Redistributions of source code must retain the above copyright notice,
1313
* this list of conditions and the following disclaimer.
1414
* 2. Redistributions in binary form must reproduce the above copyright notice,
1515
* this list of conditions and the following disclaimer in the documentation
1616
* and/or other materials provided with the distribution.
17-
*
17+
*
1818
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1919
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2020
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE

src/main/java/org/scijava/convert/NumberToShortConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* SciJava Common shared library for SciJava software.
44
* %%
5-
* Copyright (C) 2009 - 2015 Board of Regents of the University of
5+
* Copyright (C) 2009 - 2016 Board of Regents of the University of
66
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
77
* Institute of Molecular Cell Biology and Genetics.
88
* %%

0 commit comments

Comments
 (0)