File tree Expand file tree Collapse file tree
core/src/main/java/com/github/jsonldjava/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ public Context() {
3030 this (new JsonLdOptions ());
3131 }
3232
33- public Context (JsonLdOptions options ) {
33+ public Context (JsonLdOptions opts ) {
3434 super ();
35- init (options );
35+ init (opts );
3636 }
3737
38- public Context (Map <String , Object > map , JsonLdOptions options ) {
38+ public Context (Map <String , Object > map , JsonLdOptions opts ) {
3939 super (map );
40- init (options );
40+ init (opts );
4141 }
4242
4343 public Context (Map <String , Object > map ) {
@@ -48,6 +48,7 @@ public Context(Map<String, Object> map) {
4848 public Context (Object context , JsonLdOptions opts ) {
4949 // TODO: load remote context
5050 super (context instanceof Map ? (Map <String , Object >) context : null );
51+ init (opts );
5152 }
5253
5354 private void init (JsonLdOptions options ) {
You can’t perform that action at this time.
0 commit comments