You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should org.ajoberstar.grgit.gradle.GrgitServiceExtension#getService really return a Property? Property is for things that should be configurable.
You probably should just expose it as Provider which is a super-interface of Property.
You might also want to call disallowChanges() and finalizeValueOnRead() on the property after you have set its value to turn it into a cached provider effectively.
The text was updated successfully, but these errors were encountered:
Should
org.ajoberstar.grgit.gradle.GrgitServiceExtension#getService
really return aProperty
?Property
is for things that should be configurable.You probably should just expose it as
Provider
which is a super-interface ofProperty
.You might also want to call
disallowChanges()
andfinalizeValueOnRead()
on the property after you have set its value to turn it into a cached provider effectively.The text was updated successfully, but these errors were encountered: