Skip to content

Commit cc78875

Browse files
Tree: fix parameter name (uid -> description).
1 parent 3101d46 commit cc78875

File tree

1 file changed

+2
-2
lines changed
  • objectbox-java/src/main/java/io/objectbox/tree

1 file changed

+2
-2
lines changed

objectbox-java/src/main/java/io/objectbox/tree/Tree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ public long putMetaBranch(long id, long parentBranchId, String name) {
158158
return nativePutMetaBranch(handle, id, parentBranchId, name, null);
159159
}
160160

161-
public long putMetaBranch(long id, long parentBranchId, String name, @Nullable String uid) {
162-
return nativePutMetaBranch(handle, id, parentBranchId, name, uid);
161+
public long putMetaBranch(long id, long parentBranchId, String name, @Nullable String description) {
162+
return nativePutMetaBranch(handle, id, parentBranchId, name, description);
163163
}
164164

165165
public long[] putMetaBranches(String[] path) {

0 commit comments

Comments
 (0)