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 880287c6ab
commit 3cb8d4f87c

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() + "]";
}