1.1 --- a/java/SuperPostak/nbproject/build-impl.xml Wed Jan 05 14:19:11 2011 +0100
1.2 +++ b/java/SuperPostak/nbproject/build-impl.xml Wed Jan 05 14:19:35 2011 +0100
1.3 @@ -292,15 +292,18 @@
1.4 <attribute default="${build.classes.dir}" name="destdir"/>
1.5 <sequential>
1.6 <fail unless="javac.includes">Must set javac.includes</fail>
1.7 - <pathconvert pathsep="," property="javac.includes.binary">
1.8 + <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
1.9 <path>
1.10 <filelist dir="@{destdir}" files="${javac.includes}"/>
1.11 </path>
1.12 <globmapper from="*.java" to="*.class"/>
1.13 </pathconvert>
1.14 + <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
1.15 + <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
1.16 <delete>
1.17 - <files includes="${javac.includes.binary}"/>
1.18 + <files includesfile="${javac.includesfile.binary}"/>
1.19 </delete>
1.20 + <delete file="${javac.includesfile.binary}"/>
1.21 </sequential>
1.22 </macrodef>
1.23 </target>
2.1 --- a/java/SuperPostak/nbproject/genfiles.properties Wed Jan 05 14:19:11 2011 +0100
2.2 +++ b/java/SuperPostak/nbproject/genfiles.properties Wed Jan 05 14:19:35 2011 +0100
2.3 @@ -4,5 +4,5 @@
2.4 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
2.5 # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
2.6 nbproject/build-impl.xml.data.CRC32=d917048a
2.7 -nbproject/build-impl.xml.script.CRC32=f09a3efb
2.8 -nbproject/build-impl.xml.stylesheet.CRC32=f33e10ff@1.38.2.45
2.9 +nbproject/build-impl.xml.script.CRC32=232b6b6d
2.10 +nbproject/build-impl.xml.stylesheet.CRC32=229523de@1.38.3.45
3.1 --- a/java/SuperPostak/src/cz/frantovo/superPostak/SuperPostak.java Wed Jan 05 14:19:11 2011 +0100
3.2 +++ b/java/SuperPostak/src/cz/frantovo/superPostak/SuperPostak.java Wed Jan 05 14:19:35 2011 +0100
3.3 @@ -49,7 +49,7 @@
3.4 private static final String CERTIFIKATY_SOUBOR = "DuveryhodneCertifikaty.keystore";
3.5 private static final String NASTAVENI_SLOZKA = ".SuperPostak";
3.6 private static final String DOMACI_ADRESAR = System.getProperty("user.home");
3.7 - private static Logger log = Logger.getLogger(SuperPostak.class.getName());
3.8 + private static final Logger log = Logger.getLogger(SuperPostak.class.getName());
3.9 private static final long serialVersionUID = -7026850569575604048L;
3.10 private Nastaveni nastaveni = new Nastaveni();
3.11 private Postak postak = new Postak(nastaveni);