Skip to content

Commit

Permalink
Chore: change visibility of Constants & P2PStateManager
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaDemchenko committed Dec 19, 2024
1 parent 741c729 commit f9851f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion p2pml/src/main/java/com/novage/p2pml/Constants.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.novage.p2pml

object Constants {
internal object Constants {
const val MPEGURL_CONTENT_TYPE = "application/vnd.apple.mpegurl"
const val DEFAULT_SERVER_PORT = 8080
const val LOCALHOST = "127.0.0.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.novage.p2pml.utils
import kotlinx.coroutines.sync.Mutex
import kotlinx.coroutines.sync.withLock

class P2PStateManager {
internal class P2PStateManager {
private var isEngineDisabled = false
private val mutex = Mutex()

Expand Down

0 comments on commit f9851f4

Please sign in to comment.