|
27 | 27 | import com.google.gson.Gson; |
28 | 28 | import com.google.gson.JsonElement; |
29 | 29 | import com.google.gson.JsonObject; |
30 | | -import de.bluecolored.bluemap.api.debug.DebugDump; |
31 | 30 | import de.bluecolored.bluemap.api.plugin.Plugin; |
32 | 31 |
|
33 | 32 | import java.io.InputStream; |
@@ -78,35 +77,30 @@ public abstract class BlueMapAPI { |
78 | 77 | * Getter for the {@link RenderManager}. |
79 | 78 | * @return the {@link RenderManager} |
80 | 79 | */ |
81 | | - @DebugDump |
82 | 80 | public abstract RenderManager getRenderManager(); |
83 | 81 |
|
84 | 82 | /** |
85 | 83 | * Getter for the {@link WebApp}. |
86 | 84 | * @return the {@link WebApp} |
87 | 85 | */ |
88 | | - @DebugDump |
89 | 86 | public abstract WebApp getWebApp(); |
90 | 87 |
|
91 | 88 | /** |
92 | 89 | * Getter for the {@link Plugin} |
93 | 90 | * @return the {@link Plugin} |
94 | 91 | */ |
95 | | - @DebugDump |
96 | 92 | public abstract Plugin getPlugin(); |
97 | 93 |
|
98 | 94 | /** |
99 | 95 | * Getter for all {@link BlueMapMap}s loaded by BlueMap. |
100 | 96 | * @return an unmodifiable collection of all loaded {@link BlueMapMap}s |
101 | 97 | */ |
102 | | - @DebugDump |
103 | 98 | public abstract Collection<BlueMapMap> getMaps(); |
104 | 99 |
|
105 | 100 | /** |
106 | 101 | * Getter for all {@link BlueMapWorld}s loaded by BlueMap. |
107 | 102 | * @return an unmodifiable collection of all loaded {@link BlueMapWorld}s |
108 | 103 | */ |
109 | | - @DebugDump |
110 | 104 | public abstract Collection<BlueMapWorld> getWorlds(); |
111 | 105 |
|
112 | 106 | /** |
@@ -137,14 +131,12 @@ public abstract class BlueMapAPI { |
137 | 131 | * Getter for the installed BlueMap version |
138 | 132 | * @return the version-string |
139 | 133 | */ |
140 | | - @DebugDump |
141 | 134 | public abstract String getBlueMapVersion(); |
142 | 135 |
|
143 | 136 | /** |
144 | 137 | * Getter for the installed BlueMapAPI version |
145 | 138 | * @return the version-string |
146 | 139 | */ |
147 | | - @DebugDump |
148 | 140 | public String getAPIVersion() { |
149 | 141 | return VERSION; |
150 | 142 | } |
|
0 commit comments