Skip to content

Commit

Permalink
eclipse-leshan#933: Correct the access level of a member variable
Browse files Browse the repository at this point in the history
Signed-off-by: moznion <[email protected]>
  • Loading branch information
moznion committed Dec 8, 2020
1 parent c918c93 commit c67e3dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
*/
public class LwM2mClientObserverDispatcher implements LwM2mClientObserver2 {
protected CopyOnWriteArrayList<LwM2mClientObserver> observers = new CopyOnWriteArrayList<>();
private CopyOnWriteArrayList<LwM2mClientObserver> observers = new CopyOnWriteArrayList<>();

public void addObserver(LwM2mClientObserver observer) {
observers.add(observer);
Expand Down

0 comments on commit c67e3dd

Please sign in to comment.