Skip to content

Commit

Permalink
Migrate use of deprecated method.
Browse files Browse the repository at this point in the history
  • Loading branch information
afs committed Sep 1, 2018
1 parent cd9add5 commit 461e7a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
* <pre>
* DatasetGraph dsg = ...;
* FusekiServer server = FusekiServer.create()
* .setPort(1234)
* .port(1234)
* .add("/ds", dsg)
* .build();
* server.start();
Expand All @@ -96,7 +96,7 @@ public class FusekiServer {
static public FusekiServer make(int port, String name, DatasetGraph dsg) {
return create()
.port(port)
.setLoopback(true)
.loopback(true)
.add(name, dsg)
.build();
}
Expand Down

0 comments on commit 461e7a4

Please sign in to comment.