Package com.sk89q.worldedit.world.snapshot

Examples of com.sk89q.worldedit.world.snapshot.SnapshotRepository


        showHelpInfo = config.getBoolean("show-help-on-first-use", true);

        String snapshotsDir = config.getString("snapshots.directory", "");
        if (!snapshotsDir.isEmpty()) {
            snapshotRepo = new SnapshotRepository(snapshotsDir);
        }

        String type = config.getString("shell-save-type", "").trim();
        shellSaveType = type.equals("") ? null : type;
View Full Code Here


        LocalSession.MAX_HISTORY_SIZE = Math.max(15, getInt("history-size", 15));

        String snapshotsDir = getString("snapshots-dir", "");
        if (!snapshotsDir.isEmpty()) {
            snapshotRepo = new SnapshotRepository(snapshotsDir);
        }

        OutputStream output = null;
        path.getParentFile().mkdirs();
        try {
View Full Code Here

TOP

Related Classes of com.sk89q.worldedit.world.snapshot.SnapshotRepository

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.