Subversion Repositories DevTools

Rev

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

Rev 7033 Rev 7046
Line 398... Line 398...
398
	 *     This buildtool will set to 'w' when a ripple has been detected
398
	 *     This buildtool will set to 'w' when a ripple has been detected
399
	 *     User resets to NULL when the ripple can be resumed. This is stored as an 'n'
399
	 *     User resets to NULL when the ripple can be resumed. This is stored as an 'n'
400
	 * 
400
	 * 
401
	 */
401
	 */
402
    public char mRippleStop;
402
    public char mRippleStop;
-
 
403
    
-
 
404
    /** The duration (seconds) of the last build of this package
-
 
405
     *  Used to estimate the cost of building the package
-
 
406
     *  A WIP packages gets the buildTime of the package its based upon
-
 
407
     */
-
 
408
    public int mBuildTime;
403
 
409
 
404
    /**
410
    /**
405
     * Constructor
411
     * Constructor
406
     * Used to create planned packages. In these packages the change_type is significant
412
     * Used to create planned packages. In these packages the change_type is significant
407
     * 
413
     * 
Line 1195... Line 1201...
1195
    private boolean exists(ReleaseManager releaseManager, int rtag_id) throws Exception
1201
    private boolean exists(ReleaseManager releaseManager, int rtag_id) throws Exception
1196
    {
1202
    {
1197
        mLogger.debug("exists on Package " + mName + " version " + mVersion + " extension " + mExtension);
1203
        mLogger.debug("exists on Package " + mName + " version " + mVersion + " extension " + mExtension);
1198
        boolean retVal = false;
1204
        boolean retVal = false;
1199
 
1205
 
1200
        if (!ReleaseManager.mUseDatabase)
1206
        if (!releaseManager.mUseDatabase)
1201
        {
1207
        {
1202
            mLogger.info("exists !releaseManager.mUseDatabase");
1208
            mLogger.info("exists !releaseManager.mUseDatabase");
1203
        }
1209
        }
1204
        else
1210
        else
1205
        {
1211
        {