예제 #1
0
파일: Job.java 프로젝트: neo2buha/jenkins
 /**
  * @deprecated since 2008-06-15. This is only used to support backward compatibility with old
  *     URLs.
  */
 @Deprecated
 public RunT getBuild(String id) {
   for (RunT r : _getRuns().values()) {
     if (r.getId().equals(id)) return r;
   }
   return null;
 }