We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 117ec02 commit dec00abCopy full SHA for dec00ab
1 file changed
HeartLibrary/src/main/java/jme3utilities/debug/Dumper.java
@@ -1,5 +1,5 @@
1
/*
2
- Copyright (c) 2013-2020, Stephen Gold
+ Copyright (c) 2013-2021, Stephen Gold
3
All rights reserved.
4
5
Redistribution and use in source and binary forms, with or without
@@ -817,7 +817,7 @@ protected void dump(AppState appState, String indent) {
817
stream.print(className);
818
819
if (appState instanceof AbstractAppState) {
820
- String id = ((AbstractAppState) appState).getId();
+ String id = appState.getId();
821
if (id != null) {
822
stream.print(" id=");
823
stream.print(id);
0 commit comments