Package com.sk89q.skmcl.minecraft.model

Examples of com.sk89q.skmcl.minecraft.model.ReleaseList


     * @return the release list
     * @throws IOException on I/O error
     */
    private ReleaseList getReleaseList() throws IOException, InterruptedException {
        if (releaseList == null) {
            ReleaseList list = HttpRequest
                    .get(url(VERSIONS_LIST_URL))
                    .execute()
                    .returnContent()
                    .asJson(ReleaseList.class);
            this.releaseList = list;
View Full Code Here

TOP

Related Classes of com.sk89q.skmcl.minecraft.model.ReleaseList

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.