Fixed toString of FileAttributes (Fixes #258)

This commit is contained in:
Jeroen van Erp
2016-08-15 09:56:13 +02:00
parent caa6cca665
commit 5f292d398f

View File

@@ -222,7 +222,7 @@ public final class FileAttributes {
sb.append("size=").append(size).append(";");
if (has(Flag.UIDGID))
sb.append("uid=").append(size).append(",gid=").append(gid).append(";");
sb.append("uid=").append(uid).append(",gid=").append(gid).append(";");
if (has(Flag.MODE))
sb.append("mode=").append(mode.toString()).append(";");