3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-22 01:58:02 +02:00
Dieser Commit ist enthalten in:
MattBDev 2021-05-11 20:16:53 -04:00
Ursprung 4534154894
Commit 6f2e4c0cf3

Datei anzeigen

@ -123,11 +123,7 @@ public class YAMLNode {
@SuppressWarnings("unchecked")
public Object getProperty(String path) {
if (!path.contains(".")) {
Object val = root.get(path);
if (val == null) {
return null;
}
return val;
return root.get(path);
}
String[] parts = path.split("\\.");