Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused loggers #1011

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package io.mockk.impl.recording.states

import io.mockk.MockKException
import io.mockk.MockKGateway.ExclusionParameters
import io.mockk.impl.log.Logger
import io.mockk.impl.recording.CommonCallRecorder

class ExclusionState(
Expand Down Expand Up @@ -34,7 +33,4 @@ class ExclusionState(
}
}

companion object {
val log = Logger<VerifyingState>()
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package io.mockk.impl.instantiation

import io.mockk.MethodDescription
import io.mockk.impl.log.Logger
import io.mockk.impl.stub.Stub
import io.mockk.impl.stub.StubGatewayAccess
import io.mockk.impl.stub.StubRepository
Expand Down Expand Up @@ -36,9 +35,6 @@ class JsMockFactory(

}

companion object {
val log = Logger<JsMockFactory>()
}
}

internal external interface ProxyHandler {
Expand Down