Changeset 7:66667bb5a6cc

Show
Ignore:
Timestamp:
01/05/11 14:19:35 (13 years ago)
Author:
František Kučera <franta-hg@…>
Branch:
default
Message:

drobnosti

Location:
java/SuperPostak
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • java/SuperPostak/nbproject/build-impl.xml

    r5 r7  
    293293            <sequential> 
    294294                <fail unless="javac.includes">Must set javac.includes</fail> 
    295                 <pathconvert pathsep="," property="javac.includes.binary"> 
     295                <pathconvert pathsep="${line.separator}" property="javac.includes.binary"> 
    296296                    <path> 
    297297                        <filelist dir="@{destdir}" files="${javac.includes}"/> 
     
    299299                    <globmapper from="*.java" to="*.class"/> 
    300300                </pathconvert> 
     301                <tempfile deleteonexit="true" property="javac.includesfile.binary"/> 
     302                <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/> 
    301303                <delete> 
    302                     <files includes="${javac.includes.binary}"/> 
     304                    <files includesfile="${javac.includesfile.binary}"/> 
    303305                </delete> 
     306                <delete file="${javac.includesfile.binary}"/> 
    304307            </sequential> 
    305308        </macrodef> 
  • java/SuperPostak/nbproject/genfiles.properties

    r5 r7  
    55# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 
    66nbproject/build-impl.xml.data.CRC32=d917048a 
    7 nbproject/build-impl.xml.script.CRC32=f09a3efb 
    8 nbproject/build-impl.xml.stylesheet.CRC32=f33e10ff@1.38.2.45 
     7nbproject/build-impl.xml.script.CRC32=232b6b6d 
     8nbproject/build-impl.xml.stylesheet.CRC32=229523de@1.38.3.45 
  • java/SuperPostak/src/cz/frantovo/superPostak/SuperPostak.java

    r5 r7  
    5050    private static final String NASTAVENI_SLOZKA = ".SuperPostak"; 
    5151    private static final String DOMACI_ADRESAR = System.getProperty("user.home"); 
    52     private static Logger log = Logger.getLogger(SuperPostak.class.getName()); 
     52    private static final Logger log = Logger.getLogger(SuperPostak.class.getName()); 
    5353    private static final long serialVersionUID = -7026850569575604048L; 
    5454    private Nastaveni nastaveni = new Nastaveni();