mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Simplify logic
This commit is contained in:
parent
4534154894
commit
6f2e4c0cf3
@ -123,11 +123,7 @@ public class YAMLNode {
|
|||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
public Object getProperty(String path) {
|
public Object getProperty(String path) {
|
||||||
if (!path.contains(".")) {
|
if (!path.contains(".")) {
|
||||||
Object val = root.get(path);
|
return root.get(path);
|
||||||
if (val == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return val;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String[] parts = path.split("\\.");
|
String[] parts = path.split("\\.");
|
||||||
|
Loading…
Reference in New Issue
Block a user