Package org.apache.subversion.javahl.types

Examples of org.apache.subversion.javahl.types.RuntimeVersion


        {
            throw new LinkageError("Native library version must be at least " +
                                   "1.9.0, but is only " + version);
        }

        runtimeVersion = new RuntimeVersion();
        if (runtimeVersion.getMajor() < version.getMajor()
            || (runtimeVersion.getMajor() == version.getMajor()
                && runtimeVersion.getMinor() < version.getMinor()))
        {
            throw new LinkageError(
View Full Code Here

TOP

Related Classes of org.apache.subversion.javahl.types.RuntimeVersion

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.