Changes in GeoTools header only. The removal of the "or (at your option) any later version" clause must be keep in Geotk for every classes having contribution from a developer other than those who accepted re-licensing. This header does not apply to Apache SIS, since the above-cited contributions are omitted.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r20873:20874 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/resources/IndexedResourceCompiler.java
Revision 20873 | Revision 20874 |
---|---|
/* * Geotools 2 - OpenSource mapping toolkit * (C) 2003, Geotools Project Managment Committee (PMC) * (C) 2001, Institut de Recherche pour le Développement * * This library is free software; you can redistribute it and/or |
/* * GeoTools - OpenSource mapping toolkit * http://geotools.org * (C) 2003-2006, Geotools Project Managment Committee (PMC) * (C) 2001, Institut de Recherche pour le Développement * * This library is free software; you can redistribute it and/or |
* but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package org.geotools.resources; |
* but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.resources; |
final File file = new File(fullname.replace('.', '/') + ".java"); final BufferedWriter out = new BufferedWriter(new FileWriter(file)); out.write("/*\n" + " * Geotools - OpenSource mapping toolkit\n" + " * (C) 2003, Geotools Project Managment Committee (PMC)\n" + " *\n" + " * THIS IS AN AUTOMATICALLY GENERATED FILE. DO NOT EDIT!\n" + " * Generated with: org.geotools.resources.ResourceCompiler\n" + " */\n"); |
final File file = new File(fullname.replace('.', '/') + ".java"); final BufferedWriter out = new BufferedWriter(new FileWriter(file)); out.write("/*\n" + " * GeoTools - OpenSource mapping toolkit\n" + " * http://geotools.org\n" + " * (C) 2003-2006, Geotools Project Managment Committee (PMC)\n" + " *\n" + " * This library is free software; you can redistribute it and/or\n" + " * modify it under the terms of the GNU Lesser General Public\n" + " * License as published by the Free Software Foundation; either\n" + " * version 2.1 of the License, or (at your option) any later version.\n" + " * \n" + " * This library is distributed in the hope that it will be useful,\n" + " * but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" + " * Lesser General Public License for more details.\n" + " * \n" + " * THIS IS AN AUTOMATICALLY GENERATED FILE. DO NOT EDIT!\n" + " * Generated with: org.geotools.resources.ResourceCompiler\n" + " */\n"); |