hypfvieh / dbus-java

Improved version of java DBus library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/)
https://hypfvieh.github.io/dbus-java/
MIT License
185 stars 73 forks source link

Make ReceivingServiceConfig declare a final configuration #192

Closed ghost closed 1 year ago

ghost commented 1 year ago

Can the following instance variable declaration in ReceivingServiceConfig (around line 40) be made final?

private ReceivingServiceConfig config = new ReceivingServiceConfig();

That is:

private final ReceivingServiceConfig config = new ReceivingServiceConfig();