We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When enabling the configuration cache with --configuration-cache, the task com.github.monosul.yadegrap.DelombokTask tries to serialize an object of type java.io.OutputStream. I believe this is due to this usage: https://github.com/monosoul/yadegrap/blob/not-ant/src/main/groovy/com/github/monosoul/yadegrap/DelombokTask.groovy#L142-L162.
--configuration-cache
com.github.monosul.yadegrap.DelombokTask
java.io.OutputStream
a subtype of java.io.OutputStream, as these are not supported with the configuration cache.
I believe to fix, you can't assign the instance to a field of the class.
The text was updated successfully, but these errors were encountered:
Is this something you are planning to fix and release soon?
Sorry, something went wrong.
No branches or pull requests
When enabling the configuration cache with
--configuration-cache
, the taskcom.github.monosul.yadegrap.DelombokTask
tries to serialize an object of typejava.io.OutputStream
. I believe this is due to this usage: https://github.com/monosoul/yadegrap/blob/not-ant/src/main/groovy/com/github/monosoul/yadegrap/DelombokTask.groovy#L142-L162.I believe to fix, you can't assign the instance to a field of the class.
The text was updated successfully, but these errors were encountered: