mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
at missing no-arg constructor for Gson deserialization (#505)
Fixes: https://github.com/openhab/openhab-core/issues/504 Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
This commit is contained in:
parent
6260f8e8ae
commit
9475025cf7
@ -88,6 +88,15 @@ public final class ConfigStatusMessage {
|
|||||||
*/
|
*/
|
||||||
public final Integer statusCode;
|
public final Integer statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Package protected default constructor to allow reflective instantiation.
|
||||||
|
*
|
||||||
|
* !!! DO NOT REMOVE - Gson needs it !!!
|
||||||
|
*/
|
||||||
|
ConfigStatusMessage() {
|
||||||
|
this(null, null, null, null, null, null);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new {@link ConfigStatusMessage}.
|
* Creates a new {@link ConfigStatusMessage}.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user