コード例 #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);
   }
 }