예제 #1
0
파일: Evolutions.java 프로젝트: hsch/play1
 public static synchronized void resolve(String moduleKey, int revision) {
   try {
     EvolutionQuery.resolve(revision, moduleKey);
   } catch (Exception e) {
     throw new UnexpectedException(e);
   }
 }
예제 #2
0
파일: Evolutions.java 프로젝트: hsch/play1
 public static synchronized void resolve(int revision) {
   try {
     EvolutionQuery.resolve(revision, Play.configuration.getProperty("application.name"));
   } catch (Exception e) {
     throw new UnexpectedException(e);
   }
 }