-
Notifications
You must be signed in to change notification settings - Fork 0
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
update gradle/java/kotlin/grpc/proto #21
update gradle/java/kotlin/grpc/proto #21
Conversation
@@ -72,9 +72,9 @@ class ContractPluginIntegrationTest : WordSpec() { | |||
cleanResult.task(":contracts:clean") shouldNot haveOutcome(TaskOutcome.FAILED) | |||
p8eCleanResult.task(":p8eClean") should haveOutcome(TaskOutcome.SUCCESS) | |||
|
|||
FileUtils.listFiles(File(contractPath), WildcardFileFilter("ContractHash*.kt"), WildcardFileFilter(".")) | |||
FileUtils.listFiles(File(contractPath), WildcardFileFilter.builder().setWildcards("ContractHash*.kt").get(), WildcardFileFilter.builder().setWildcards(".").get()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
random deprecated stuff, good thing a builder for a simple value is so much more concise than a single constructor
@@ -294,11 +294,11 @@ internal class Bootstrapper( | |||
// filter out specifications that already exist | |||
existingRecordSpecs.contains(functionSpec.outputSpec.spec.name) | |||
}.forEach { functionSpec -> | |||
val id = | |||
val recordSpecId = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rando shadowed variable, just getting rid of a warning
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #21 +/- ##
==========================================
+ Coverage 7.19% 7.23% +0.04%
+ Complexity 6 3 -3
==========================================
Files 9 9
Lines 695 691 -4
Branches 62 59 -3
==========================================
Hits 50 50
+ Misses 643 639 -4
Partials 2 2
☔ View full report in Codecov by Sentry. |
Prepping for updating to pb-grpc-client-kotlin
depends on provenance-io/p8e-scope-sdk#67