Add return tag to ConfigList.unwrapped javadoc

This commit is contained in:
kxbmap 2016-04-03 08:09:52 +09:00
parent 09146706db
commit e91c73b92e

View File

@ -37,6 +37,8 @@ public interface ConfigList extends List<ConfigValue>, ConfigValue {
/** /**
* Recursively unwraps the list, returning a list of plain Java values such * Recursively unwraps the list, returning a list of plain Java values such
* as Integer or String or whatever is in the list. * as Integer or String or whatever is in the list.
*
* @return a {@link java.util.List} containing plain Java objects
*/ */
@Override @Override
List<Object> unwrapped(); List<Object> unwrapped();