This repository was archived by the owner on Jan 22, 2019. It is now read-only.

Description
For this two classes will be generated schemas with different fields order. Fix for Issue #11 not only broke compatibility - it make inconsistent default behavior of CsvMapper with default JsonPropertyOrder value.
class Point {
public int y;
public int x;
}
@JsonPropertyOrder
public static class PointWithAnnotation extends Point {}