geforkt von Mirrors/FastAsyncWorldEdit
Simplify logic
Dieser Commit ist enthalten in:
Ursprung
4534154894
Commit
6f2e4c0cf3
@ -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("\\.");
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren