Skip to content

Commit aca094a

Browse files
authored
Fixes
- Add missing param description to StringAdapter - Add libxml2-utils as dependency to Travis build
1 parent 068364f commit aca094a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ before_install:
99
- if [ ! -z "$GPG_OWNERTRUST" ]; then echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust; fi
1010
after_success:
1111
- mvn clean cobertura:cobertura coveralls:report -DrepoToken=${COVERALL_TOKEN}
12+
addons:
13+
apt:
14+
packages:
15+
- libxml2-utils
1216
deploy:
1317
-
1418
provider: script

src/main/java/com/marcospassos/phpserializer/adapter/StringAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public StringAdapter() {
2828
/**
2929
* Creates a adapter for strings encoded with the specified charset.
3030
*
31-
* @param charset
31+
* @param charset The charset to encode strings.
3232
*/
3333
public StringAdapter(Charset charset) {
3434
this.charset = charset;

0 commit comments

Comments
 (0)