Skip to content
This repository has been archived by the owner on Oct 23, 2020. It is now read-only.

Commit

Permalink
Merge pull request #9 from ljwolford/android
Browse files Browse the repository at this point in the history
Android
  • Loading branch information
ljwolford committed Jun 22, 2015
2 parents 79f2fdc + 2047a7e commit 21d0471
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ jxapi - Experience API Java library
=====
[![Build Status](https://travis-ci.org/adlnet/jxapi.png?branch=master)](https://travis-ci.org/adlnet/jxapi)

##### Note: To build jxapi jar with all included dependencies simply run `mvn package`

# StatementClient

To instantiate a new StatementClient you need the URL to an LRS, and a username/password combo that works for HTTP BasicAuth
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/gov/adlnet/xapi/model/ActivityDefinition.java
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ public String toString() {
return "";
}
public String toString(String langMap) {
return name.get(langMap);
if (name != null){
return name.get(langMap);
}
return "";
}
}

0 comments on commit 21d0471

Please sign in to comment.