File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
src/main/java/io/frictionlessdata/tableschema Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >io.frictionlessdata</groupId >
55 <artifactId >tableschema-java</artifactId >
6- <version >0.8.2 -SNAPSHOT</version >
6+ <version >0.8.3 -SNAPSHOT</version >
77 <packaging >jar</packaging >
88 <issueManagement >
99 <url >https://github.com/frictionlessdata/tableschema-java/issues</url >
Original file line number Diff line number Diff line change 11package io .frictionlessdata .tableschema ;
22
3+ import com .fasterxml .jackson .annotation .JsonIgnore ;
34import com .fasterxml .jackson .core .JsonProcessingException ;
45import com .fasterxml .jackson .databind .ObjectMapper ;
56import io .frictionlessdata .tableschema .exception .*;
@@ -56,6 +57,7 @@ public class Table{
5657 private Schema schema = null ;
5758 private CSVFormat format = TableDataSource .getDefaultCsvFormat ();
5859
60+ @ JsonIgnore
5961 private Charset charset = StandardCharsets .UTF_8 ;
6062
6163 /**
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ public class Schema implements SchemaInterface{
5757 /**
5858 * The charset or encoding of the schema
5959 */
60+ @ JsonIgnore
6061 private Charset charset = StandardCharsets .UTF_8 ;
6162
6263 // the schema validator
You can’t perform that action at this time.
0 commit comments