Skip to content

Commit

Permalink
[Fix] Property names according to convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Zdenek committed Sep 16, 2021
1 parent 1cec400 commit 6f15f5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions s-pipes-core/src/main/java/cz/cvut/spipes/constants/CSVW.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ protected static final Property property(String local )
public static final Property row = property( "row");
public static final Property rowNum = property( "rownum");
public static final Property describes = property( "describes");
public static final Property hasAboutUrl = property("aboutUrl");
public static final Property hasPropertyUrl = property("propertyUrl");
public static final Property hasName = property("name");
public static final Property hasValueUrl = property("valueUrl");
public static final Property aboutUrl = property("aboutUrl");
public static final Property propertyUrl = property("propertyUrl");
public static final Property name = property("name");
public static final Property valueUrl = property("valueUrl");

public static final Resource TableGroup = resource("TableGroup");
public static final Resource Table = resource("Table");
Expand Down

0 comments on commit 6f15f5e

Please sign in to comment.