Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class {{classname}} extends AbstractOpenApiSchema{{#vendorExtensions.x-im

{{/anyOf}}
{{/composedSchemas}}
throw new IOException(String.format("Failed deserialization for {{classname}}: no match found"));
throw new IOException("Failed deserialization for {{classname}}: no match found");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class {{classname}} extends AbstractOpenApiSchema{{#vendorExtensions.x-im

{{/anyOf}}
{{/composedSchemas}}
throw new IOException(String.format("Failed deserialization for {{classname}}: no match found"));
throw new IOException("Failed deserialization for {{classname}}: no match found");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class {{classname}} extends AbstractOpenApiSchema{{#vendorExtensions.x-im
}

{{/anyOf}}
throw new IOException(String.format("Failed deserialization for {{classname}}: no match found"));
throw new IOException("Failed deserialization for {{classname}}: no match found");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public GmFruit deserialize(JsonParser jp, DeserializationContext ctxt) throws IO
log.log(Level.FINER, "Input data does not match 'GmFruit'", e);
}

throw new IOException(String.format("Failed deserialization for GmFruit: no match found"));
throw new IOException("Failed deserialization for GmFruit: no match found");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public MammalAnyof deserialize(JsonParser jp, DeserializationContext ctxt) throw
log.log(Level.FINER, "Input data does not match 'MammalAnyof'", e);
}

throw new IOException(String.format("Failed deserialization for MammalAnyof: no match found"));
throw new IOException("Failed deserialization for MammalAnyof: no match found");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public GmFruit deserialize(JsonParser jp, DeserializationContext ctxt) throws IO
log.log(Level.FINER, "Input data does not match 'GmFruit'", e);
}

throw new IOException(String.format("Failed deserialization for GmFruit: no match found"));
throw new IOException("Failed deserialization for GmFruit: no match found");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public GmFruit deserialize(JsonParser jp, DeserializationContext ctxt) throws IO
log.log(Level.FINER, "Input data does not match 'GmFruit'", e);
}

throw new IOException(String.format("Failed deserialization for GmFruit: no match found"));
throw new IOException("Failed deserialization for GmFruit: no match found");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public GmFruit deserialize(JsonParser jp, DeserializationContext ctxt) throws IO
log.log(Level.FINER, "Input data does not match 'GmFruit'", e);
}

throw new IOException(String.format("Failed deserialization for GmFruit: no match found"));
throw new IOException("Failed deserialization for GmFruit: no match found");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public MammalAnyof deserialize(JsonParser jp, DeserializationContext ctxt) throw
log.log(Level.FINER, "Input data does not match 'MammalAnyof'", e);
}

throw new IOException(String.format("Failed deserialization for MammalAnyof: no match found"));
throw new IOException("Failed deserialization for MammalAnyof: no match found");
}

/**
Expand Down
Loading