fix: mess tag. Closes #1090.

This commit is contained in:
huanghongxun 2021-10-12 23:16:01 +08:00
parent 3ac16b15c6
commit 2e8e6dd39e
2 changed files with 1 additions and 8 deletions

View File

@ -43,7 +43,7 @@ public class AggregatedObservableList<T> {
* @return an unmodifiable view of the aggregatedList
*/
public ObservableList<T> getAggregatedList() {
return FXCollections.unmodifiableObservableList(aggregatedList);
return aggregatedList;
}
public void appendList(@NotNull ObservableList<T> list) {

View File

@ -44,13 +44,6 @@ public enum Platform {
return bit;
}
/**
* The platform of current Java Environment.
*/
public static Platform getPlatform() {
return Architecture.CURRENT.getPlatform();
}
/**
* The json serializer to {@link Platform}.
*/