Browse Source

Fix encodings on some source files and confirm by compiling as UTF-8

tags/v1.2.0
James Moger 11 years ago
parent
commit
69be7ea901

+ 2
- 2
build.xml View File

@@ -94,7 +94,7 @@
<delete dir="${project.build.dir}" />
<mkdir dir="${project.build.dir}" />
<javac debug="true" srcdir="${basedir}/src" destdir="${project.build.dir}">
<javac encoding="utf-8" debug="true" srcdir="${basedir}/src" destdir="${project.build.dir}">
<include name="com/iciql/build/Build.java" />
<include name="com/iciql/Constants.java" />
<include name="com/iciql/utils/Utils.java" />
@@ -108,7 +108,7 @@
<include name="*.jar" />
</fileset>
</path>
<javac debug="true" destdir="${project.build.dir}" failonerror="false">
<javac encoding="utf-8" debug="true" destdir="${project.build.dir}" failonerror="false">
<src path="${basedir}/src" />
<src path="${basedir}/tests" />
<classpath refid="master-classpath" />

+ 1
- 1
src/com/iciql/Db.java View File

@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
* Copyright 2012 Frederic Gaillard.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Alex Telepov.
*
* Licensed under the Apache License, Version 2.0 (the "License");

+ 1
- 1
src/com/iciql/Define.java View File

@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
src/com/iciql/Iciql.java View File

@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
src/com/iciql/IciqlException.java View File

@@ -1,6 +1,6 @@
/*
* Copyright 2011 James Moger.
* Copyright 2012 Frederic Gaillard
* Copyright 2012 Frédéric Gaillard
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
src/com/iciql/SQLDialect.java View File

@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
src/com/iciql/SQLDialectDefault.java View File

@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
src/com/iciql/TableDefinition.java View File

@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
* Copyright 2012 Frederic Gaillard.
* Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
src/com/iciql/TableInspector.java View File

@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
tests/com/iciql/test/ForeignKeyTest.java View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 James Moger.
*
* Licensed under the Apache License, Version 2.0 (the "License");

+ 1
- 1
tests/com/iciql/test/IciqlSuite.java View File

@@ -1,6 +1,6 @@
/*
* Copyright 2011 James Moger.
* Copyright 2012 Frederic Gaillard.
* Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
tests/com/iciql/test/TransactionTest.java View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012 Frederic Gaillard.
* Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

+ 1
- 1
tests/com/iciql/test/models/CategoryAnnotationOnly.java View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 James Moger.
*
* Licensed under the Apache License, Version 2.0 (the "License");

+ 1
- 1
tests/com/iciql/test/models/ProductAnnotationOnlyWithForeignKey.java View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Frédéric Gaillard.
* Copyright 2012 James Moger.
*
* Licensed under the Apache License, Version 2.0 (the "License");

Loading…
Cancel
Save