Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-20 15:00:11 +01:00
Add back some comments
Dieser Commit ist enthalten in:
Ursprung
30288cf98e
Commit
37a608444a
@ -169,12 +169,11 @@ public class GeyserExtensionLoader extends ExtensionLoader {
|
|||||||
if (Files.isDirectory(updateDirectory)) {
|
if (Files.isDirectory(updateDirectory)) {
|
||||||
// Get the current extensions and store them in a map
|
// Get the current extensions and store them in a map
|
||||||
Map<String, Path> extensionFiles = new HashMap<>();
|
Map<String, Path> extensionFiles = new HashMap<>();
|
||||||
this.processExtensionsFolder(extensionsDirectory, (path, description) -> {
|
this.processExtensionsFolder(extensionsDirectory, (path, description) -> extensionFiles.put(description.id(), path), (path, e) -> {
|
||||||
extensionFiles.put(description.id(), path);
|
|
||||||
}, (path, e) -> {
|
|
||||||
// this file will throw again when we actually try to load extensions, and it will be handled there
|
// this file will throw again when we actually try to load extensions, and it will be handled there
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Perform the updates
|
||||||
this.processExtensionsFolder(updateDirectory, (path, description) -> {
|
this.processExtensionsFolder(updateDirectory, (path, description) -> {
|
||||||
// Remove the old extension with the same ID if it exists
|
// Remove the old extension with the same ID if it exists
|
||||||
Path oldExtensionFile = extensionFiles.get(description.id());
|
Path oldExtensionFile = extensionFiles.get(description.id());
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren