Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
- Add missing param description to StringAdapter
- Add libxml2-utils as dependency to Travis build
  • Loading branch information
marcospassos authored Feb 28, 2018
1 parent 068364f commit aca094a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ before_install:
- if [ ! -z "$GPG_OWNERTRUST" ]; then echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust; fi
after_success:
- mvn clean cobertura:cobertura coveralls:report -DrepoToken=${COVERALL_TOKEN}
addons:
apt:
packages:
- libxml2-utils
deploy:
-
provider: script
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public StringAdapter() {
/**
* Creates a adapter for strings encoded with the specified charset.
*
* @param charset
* @param charset The charset to encode strings.
*/
public StringAdapter(Charset charset) {
this.charset = charset;
Expand Down

0 comments on commit aca094a

Please sign in to comment.