Esempio n. 1
0
 public static synchronized void resolve(String moduleKey, int revision) {
   try {
     EvolutionQuery.resolve(revision, moduleKey);
   } catch (Exception e) {
     throw new UnexpectedException(e);
   }
 }
Esempio n. 2
0
 public static synchronized void resolve(int revision) {
   try {
     EvolutionQuery.resolve(revision, Play.configuration.getProperty("application.name"));
   } catch (Exception e) {
     throw new UnexpectedException(e);
   }
 }