Skip to content

Commit

Permalink
Fix incorrect prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Sep 20, 2021
1 parent efa0ea5 commit 4024fd5
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 78 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/cyclops/integratedrest/Uris.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ public class Uris {
public static final String XSD = "http://www.w3.org/2001/XMLSchema#";
public static final String XSD_DECIMAL = XSD + "decimal";
public static final String XSD_LONG = XSD + "long";
public static final String IT = "https://raw.githubusercontent.com/CyclopsMC/IntegratedREST/" + MinecraftHelpers.getMinecraftVersionMajorMinor() + "/src/main/resources/";
public static final String IT = "https://raw.githubusercontent.com/CyclopsMC/IntegratedREST/master-" + MinecraftHelpers.getMinecraftVersionMajorMinor() + "/src/main/resources/";

}
2 changes: 1 addition & 1 deletion src/main/resources/context.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"label": { "@id": "rdfs:label" },
"comment": { "@id": "rdfs:comment" },

"ir": "https://raw.githubusercontent.com/CyclopsMC/IntegratedREST/master-1.12/src/main/resources/vocabulary.ttl",
"ir": "https://raw.githubusercontent.com/CyclopsMC/IntegratedREST/master-1.16/src/main/resources/vocabulary.ttl#",
"networkElementsPage": { "@id": "ir:networkElementsPage", "@type": "@id" },
"networksPage": { "@id": "ir:networksPage", "@type": "@id" },
"partsPage": { "@id": "ir:partsPage", "@type": "@id" },
Expand Down
Loading

0 comments on commit 4024fd5

Please sign in to comment.