Subversion Repositories DevTools

Rev

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

Rev 7489 Rev 7514
Line 934... Line 934...
934
  protected void deleteBuildFile()
934
  protected void deleteBuildFile()
935
  {
935
  {
936
      if ( mBuildFile.exists() ) {
936
      if ( mBuildFile.exists() ) {
937
          mBuildFile.delete(); //NOSONAR
937
          mBuildFile.delete(); //NOSONAR
938
      }
938
      }
-
 
939
  }
-
 
940
  
-
 
941
  /** Delete miscellaneous files created during the build process
-
 
942
   *  Only used at the end or start of a build.
-
 
943
   * 
-
 
944
   */
-
 
945
  protected void deleteMiscBuildFiles()
-
 
946
  {
-
 
947
      if ( mBuildFile.exists() ) {
-
 
948
          mBuildFile.delete(); //NOSONAR
-
 
949
      }
939
      
950
      
940
      if ( mBuildInfoFile.exists() ) {
951
      if ( mBuildInfoFile.exists() ) {
941
          mBuildInfoFile.delete(); //NOSONAR
952
          mBuildInfoFile.delete(); //NOSONAR
942
      }
953
      }
943
      
954
      
944
      if ( mAbtMetricsFile.exists() ) {
955
      if ( mAbtMetricsFile.exists() ) {
945
          mAbtMetricsFile.delete(); //NOSONAR
956
          mAbtMetricsFile.delete(); //NOSONAR
946
      } 
957
      } 
947
      
-
 
948
  }
958
  }
949
  
959
  
950
  /** Parse the ANT project
960
  /** Parse the ANT project
951
   *  Done once per build - useful information is extracted for use within the build
961
   *  Done once per build - useful information is extracted for use within the build
952
 * @param updateReporting 
962
 * @param updateReporting