Include the delimiter field in ListContainerOptions.toString.

This commit is contained in:
Jesse Glick 2018-05-22 20:05:27 -04:00 committed by Andrew Gaul
parent 9d88f6df5e
commit 11fac4f020
1 changed files with 1 additions and 0 deletions

View File

@ -300,6 +300,7 @@ public class ListContainerOptions extends ListOptions implements Cloneable {
public String toString() {
return "[dir=" + dir + ", recursive=" + recursive + ", detailed=" + detailed
+ ", prefix=" + prefix + ", marker=" + getMarker()
+ ", delimiter=" + delimiter
+ ", maxResults=" + getMaxResults() + "]";
}