Skip to content

Commit d82788f

Browse files
Removed one method too many
1 parent 140eaba commit d82788f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.frictionlessdata</groupId>
55
<artifactId>tableschema-java</artifactId>
6-
<version>0.7.4-SNAPSHOT</version>
6+
<version>0.7.5-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<issueManagement>
99
<url>https://github.com/frictionlessdata/tableschema-java/issues</url>

src/main/java/io/frictionlessdata/tableschema/schema/Schema.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public class Schema implements SchemaInterface{
7878
@JsonIgnore
7979
private final List<ValidationException> errors = new ArrayList<>();
8080

81+
8182
@JsonIgnore
8283
FileReference<?> reference;
8384

@@ -286,6 +287,10 @@ public String[] getHeaders() {
286287
return getFieldNames().toArray(new String[0]);
287288
}
288289

290+
public FileReference<?> getReference() {
291+
return reference;
292+
}
293+
289294
/**
290295
* Test whether this Schema contains a field with the given `name` property.
291296
*

0 commit comments

Comments
 (0)