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
Right now, the codebase depends on gson 2.10.1, and tests pass. But attempting to run:
mvn test -Dgson.version=2.11.0
results in failing tests:
[ERROR] Errors:
[ERROR] LabelingIOTest.saveLabelingWithMetadataComplexTest:125 » IllegalArgument TypeToken type argument must not contain a type variable; captured type variable T declared by private void io.scif.labeling.DefaultLabelingIOService.writeLabelingFile(java.lang.String,net.imglib2.labeling.data.LabelingData) throws java.io.IOException
See https://github.com/google/gson/blob/main/Troubleshooting.md#typetoken-type-variable
[ERROR] LabelingIOTest.saveLabelingWithMetadataPrimitiveTest:102 » IllegalArgument TypeToken type argument must not contain a type variable; captured type variable T declared by private void io.scif.labeling.DefaultLabelingIOService.writeLabelingFile(java.lang.String,net.imglib2.labeling.data.LabelingData) throws java.io.IOException
See https://github.com/google/gson/blob/main/Troubleshooting.md#typetoken-type-variable
[ERROR] LabelingIOTest.testEquality:77 » IllegalArgument TypeToken type argument must not contain a type variable; captured type variable T declared by private void io.scif.labeling.DefaultLabelingIOService.writeLabelingFile(java.lang.String,net.imglib2.labeling.data.LabelingData) throws java.io.IOException
See https://github.com/google/gson/blob/main/Troubleshooting.md#typetoken-type-variable
[ERROR] LabelingIOTest.testEquality2:91 » IllegalArgument TypeToken type argument must not contain a type variable; captured type variable T declared by private void io.scif.labeling.DefaultLabelingIOService.writeLabelingFile(java.lang.String,net.imglib2.labeling.data.LabelingData) throws java.io.IOException
See https://github.com/google/gson/blob/main/Troubleshooting.md#typetoken-type-variable
[INFO]
[ERROR] Tests run: 7, Failures: 0, Errors: 4, Skipped: 0
The text was updated successfully, but these errors were encountered:
Right now, the codebase depends on gson 2.10.1, and tests pass. But attempting to run:
results in failing tests:
The text was updated successfully, but these errors were encountered: