Skip to content
Snippets Groups Projects
Commit 88a18190 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Minor fix

parent 3dda86ac
Branches
Tags
No related merge requests found
......@@ -228,11 +228,9 @@ public class NodeDAO {
addProperty(NodeProperties.PUBLIC_READ_URI, String.valueOf(rs.getBoolean("is_public")),
properties);
addProperty(NodeProperties.QUOTA_URI, String.valueOf(rs.getString("quota")),
properties);
addProperty(NodeProperties.QUOTA_URI, rs.getString("quota"), properties);
addProperty(NodeProperties.MD5_URI, String.valueOf(rs.getString("content_md5")),
properties);
addProperty(NodeProperties.MD5_URI, rs.getString("content_md5"), properties);
addProperty("urn:async_trans", String.valueOf(rs.getBoolean("async_trans")),
properties);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment