Skip to content

Commit

Permalink
fixed sonar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuth committed Oct 12, 2023
1 parent de8c491 commit eb65b50
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/kotlin/de/gmuth/ipp/client/IppObject.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,13 @@ package de.gmuth.ipp.client
*/

import de.gmuth.ipp.core.IppAttributesGroup
import de.gmuth.ipp.core.IppRequest
import java.util.logging.Level
import java.util.logging.Logger

abstract class IppObject(
private val exchangeDelegate: IppExchange,
internal val attributes: IppAttributesGroup
) : IppExchange {

override fun exchange(request: IppRequest) =
exchangeDelegate.exchange(request)
) : IppExchange by exchangeDelegate {

protected abstract fun objectName(): String

Expand Down

0 comments on commit eb65b50

Please sign in to comment.