I hereby claim:
- I am seanjreilly on github.
- I am seanjreilly (https://keybase.io/seanjreilly) on keybase.
- I have a public key whose fingerprint is D37F FF5A 6E53 A7FC 6D34 A756 22FD D581 1EDE 915E
To claim this, I am signing this object:
| <templateSet group="JUnit5"> | |
| <template name="test" value="@org.junit.jupiter.api.Test @org.junit.jupiter.api.DisplayName("$name$") void $method$() throws Exception { $END$ }" description="JUnit 5 test" toReformat="true" toShortenFQNames="true" useStaticImport="true"> | |
| <variable name="name" expression="" defaultValue="" alwaysStopAt="true" /> | |
| <variable name="method" expression="camelCase(name)" defaultValue="" alwaysStopAt="false" /> | |
| <context> | |
| <option name="JAVA_DECLARATION" value="true" /> | |
| </context> | |
| </template> | |
| </templateSet> |
| import java.util.Optional; | |
| import java.util.LinkedHashSet; | |
| import java,util.Collections; | |
| public final class Foo { | |
| private final Optional<Set<String>> args; | |
| public Foo(Optional<Set<String>> args) { | |
| this.args = args.map(LinkedHashSet::new).map(Collections::unmodifiableSet); |
| * What went wrong: | |
| Execution failed for task ':test'. | |
| > failed to read class file /Users/sreilly/Projects/gradle-parameters-bug/build/classes/test/TheTest.class | |
| * Try: | |
| Run with --info or --debug option to get more log output. | |
| * Exception is: | |
| org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':test'. | |
| at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:69) |
| org.mutabilitydetector.checkers.MutabilityAnalysisException: | |
| An unhandled error occurred. Please read message at end of this output. | |
| Class being analysed: com.equalexperts.logging.LogicalLogRecord | |
| Checker that failed: MutableTypeToFieldChecker | |
| Classes analysed so far: | |
| An unhandled error occurred. This is probably my fault, not yours, and I am sorry. | |
| I'd love to get an opportunity to fix this, please report as an issue at: | |
| https://github.com/MutabilityDetector/MutabilityDetector/issues/ |
I hereby claim:
To claim this, I am signing this object:
| # Provider-specific configuration so you can fine-tune various | |
| # backing providers for Vagrant. These expose provider-specific options. | |
| # Example for VirtualBox: | |
| # | |
| config.vm.provider :virtualbox do |vb| | |
| # Don't boot with headless mode | |
| #vb.gui = false | |
| # Use VBoxManage to customize the VM. For example to change memory: | |
| # vb.customize ["modifyvm", :id, "--memory", "1024"] |
| FAILURE: Build failed with an exception. | |
| * Where: | |
| Script '/Users/sreilly/Projects/XXX/build.gradle' line: XXX | |
| * What went wrong: | |
| A problem occurred evaluating script. | |
| > Could not create task of type 'Rpm'. | |
| * Try: |