summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/JsonListEntry.java
blob: e853c5649101e3980802179b94550b329b607854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package net.minecraft.server;

import net.minecraft.util.com.google.gson.JsonObject;

public class JsonListEntry {

    private final Object a;

    public JsonListEntry(Object object) {
        this.a = object;
    }

    protected JsonListEntry(Object object, JsonObject jsonobject) {
        this.a = object;
    }

    public Object f() { // CraftBukkit -> package private -> public
        return this.a;
    }

    boolean e() {
        return false;
    }

    protected void a(JsonObject jsonobject) {}
}