Subversion Repositories XServices

Rev

Rev 20 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20 Rev 54
Line 83... Line 83...
83
        } catch (BuildException ex) {
83
        } catch (BuildException ex) {
84
            err.print(ex.getMessage());
84
            err.print(ex.getMessage());
85
            returnCode = 1;
85
            returnCode = 1;
86
        }
86
        }
87
        newMap = antproject.getProperties();
87
        newMap = antproject.getProperties();
-
 
88
        newMap.putAll(antproject.getUserProperties());
88
 
89
        
89
        for (Map.Entry<String, String> e : origMap.entrySet()) {
90
        for (Map.Entry<String, String> e : origMap.entrySet()) {
90
            newMap.remove(e.getKey());
91
            newMap.remove(e.getKey());
91
        }
92
        }
Line 92... Line 93...
92
 
93