JavaWebStack / abstract-data

A library to abstractly represent structured data and convert it from and to several formats
Apache License 2.0
1 stars 0 forks source link

Don't include static fields #12

Closed JanHolger closed 2 years ago

JanHolger commented 2 years ago

Describe the Bug Currently the mapper includes static fields

To Reproduce

class Test {
    static String test = "Test";
}

System.out.println(new Mapper().map(new Test()).toJsonString(true));

Expected behavior Don't include static fields

JanHolger commented 2 years ago

fixed in 1.0.2