We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad076c commit 9f7c0fcCopy full SHA for 9f7c0fc
modules/nf-lineage/src/main/nextflow/lineage/serde/LinTypeAdapterFactory.groovy
@@ -90,7 +90,7 @@ class LinTypeAdapterFactory<T> extends RuntimeTypeAdapterFactory<T> {
90
throw new JsonParseException("Parsed object is null")
91
def versionEl = obj.get(VERSION_FIELD)
92
if (versionEl == null || versionEl.asString != CURRENT_VERSION) {
93
- throw new JsonParseException("'Invalid or missing '${VERSION_FIELD}' property")
+ throw new JsonParseException("Invalid or missing '${VERSION_FIELD}' property")
94
}
95
final typeEl = obj.get(getTypeFieldName())
96
if( !typeEl )
0 commit comments