davidliu
Committed by GitHub

Make setter for LocalTrackPublication.muted public (#447)

* Make setter for LocalTrackPublication.muted public

* spotless
/*
* Copyright 2023 LiveKit, Inc.
* Copyright 2023-2024 LiveKit, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
... ... @@ -33,7 +33,7 @@ class LocalTrackPublication(
*/
override var muted: Boolean
get() = super.muted
set(muted) {
public set(muted) {
if (muted == this.muted) {
return
}
... ...