예제 #1
0
파일: Job.java 프로젝트: neo2buha/jenkins
 @Override
 public void onCopiedFrom(Item src) {
   super.onCopiedFrom(src);
   synchronized (this) {
     this.nextBuildNumber = 1; // reset the next build number
     this.holdOffBuildUntilSave = true;
   }
 }