Skip to content

Commit

Permalink
#7652: change getBeaker to getBeakerX
Browse files Browse the repository at this point in the history
  • Loading branch information
jaroslawmalekcodete committed Jul 11, 2018
1 parent 37f9d77 commit fff92c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/groovy/GeneralAutotranslation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"outputs": [],
"source": [
"%%java\n",
"return NamespaceClient.getBeaker().get(\"bar\");"
"return NamespaceClient.getBeakerX().get(\"bar\");"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

public class NamespaceClient implements BeakerXClient {

public static final String NAMESPACE_CLIENT = NamespaceClient.class.getSimpleName() + ".getBeaker()";
public static final String NAMESPACE_CLIENT = NamespaceClient.class.getSimpleName() + ".getBeakerX()";

private static Map<String, SynchronousQueue<Object>> messagePool = new HashMap<>();
private Comm codeCellsComm = null;
Expand All @@ -46,7 +46,7 @@ public NamespaceClient(AutotranslationService autotranslationService, BeakerXJso
this.commRepository = commRepository;
}

public static BeakerXClient getBeaker() {
public static BeakerXClient getBeakerX() {
return BeakerXClientManager.get();
}

Expand Down

0 comments on commit fff92c4

Please sign in to comment.