Subversion Repositories DevTools

Rev

Rev 7231 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7231 Rev 7282
Line 1771... Line 1771...
1771
     */
1771
     */
1772
    public Package resetDependencies() {
1772
    public Package resetDependencies() {
1773
        mDependencyCollection.clear();
1773
        mDependencyCollection.clear();
1774
        return this;
1774
        return this;
1775
    }
1775
    }
-
 
1776
    
-
 
1777
    /** Exclude Package from build consideration
-
 
1778
     * @param reason    - Reason for exclusion
-
 
1779
     * @param text      - logging text. May include {} to display package name
-
 
1780
     * @return          - The current package to allow chaining of calls
-
 
1781
     */
-
 
1782
    public Package excludeFromBuilds(int reason, String text) {
-
 
1783
        if (this.mBuildFile >= 0) {
-
 
1784
            this.mBuildFile  = reason;
-
 
1785
            mLogger.warn(text,this);
-
 
1786
        }
-
 
1787
        return this;
-
 
1788
    }
1776
 
1789
 
1777
}
1790
}