Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-15 19:10:09 +01:00
Revert "fix NPE from changes in e4358b82171"
This reverts commit b4192fd8e6
.
Dieser Commit ist enthalten in:
Ursprung
b4192fd8e6
Commit
5b6445aaaf
@ -1,24 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Gabriel Wolf <gabrielpatrikurban@gmail.com>
|
|
||||||
Date: Sun, 5 Dec 2021 14:36:05 +0000
|
|
||||||
Subject: [PATCH] fix NPE from changes in e4358b82171
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/org/bukkit/configuration/MemorySection.java b/src/main/java/org/bukkit/configuration/MemorySection.java
|
|
||||||
index 09f1debef5fad469a05a0d97b740a7310890fd64..9949fdd139709b42f8e3321b155c6980b177c2a4 100644
|
|
||||||
--- a/src/main/java/org/bukkit/configuration/MemorySection.java
|
|
||||||
+++ b/src/main/java/org/bukkit/configuration/MemorySection.java
|
|
||||||
@@ -251,7 +251,12 @@ public class MemorySection implements ConfigurationSection {
|
|
||||||
int i1 = -1, i2;
|
|
||||||
ConfigurationSection section = this;
|
|
||||||
while ((i1 = path.indexOf(separator, i2 = i1 + 1)) != -1) {
|
|
||||||
- if (section == null || !section.contains(path.substring(i2, i1), true)) {
|
|
||||||
+ final String currentPath = path.substring(i2, i1);
|
|
||||||
+ if (!section.contains(currentPath, true)) {
|
|
||||||
+ return def;
|
|
||||||
+ }
|
|
||||||
+ section = section.getConfigurationSection(currentPath);
|
|
||||||
+ if(section == null) {
|
|
||||||
return def;
|
|
||||||
}
|
|
||||||
section = section.getConfigurationSection(path.substring(i2, i1));
|
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren