mirror of
https://github.com/plexusorg/toml4j.git
synced 2024-12-28 19:24:15 +00:00
Reduced method visibility
This commit is contained in:
parent
91e5c65577
commit
de1bcbdca2
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class ArrayConverter implements ValueConverter {
|
|||
return convert(s, new AtomicInteger(1), true);
|
||||
}
|
||||
|
||||
public Object convert(String s, AtomicInteger sharedIndex, boolean topLevel) {
|
||||
private Object convert(String s, AtomicInteger sharedIndex, boolean topLevel) {
|
||||
char[] chars = s.toCharArray();
|
||||
List<Object> arrayItems = new ArrayList<Object>();
|
||||
boolean terminated = false;
|
||||
|
|
Loading…
Reference in a new issue