Package org.jamwiki

Examples of org.jamwiki.WikiVersion


   */
  public static boolean isUpgrade() {
    if (WikiUtil.isFirstUse()) {
      return false;
    }
    WikiVersion oldVersion = new WikiVersion(Environment.getValue(Environment.PROP_BASE_WIKI_VERSION));
    WikiVersion currentVersion = new WikiVersion(WikiVersion.CURRENT_WIKI_VERSION);
    return false; //oldVersion.before(currentVersion);
  }
View Full Code Here

TOP

Related Classes of org.jamwiki.WikiVersion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.