Skip to content

Commit 68e70c2

Browse files
author
Lloyd Watkin
committed
Add missing method
1 parent ab2f89f commit 68e70c2

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/main/java/org/buddycloud/channelserver/channel/ChannelManagerImpl.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,11 @@ public ResultSet<NodeAffiliation> getNodeAffiliations(String nodeId,
143143
maxItemsToReturn);
144144
}
145145

146+
@Override
147+
public ArrayList<JID> getNodeOwners(String node) throws NodeStoreException {
148+
return nodeStore.getNodeOwners(node);
149+
}
150+
146151
@Override
147152
public int countNodeAffiliations(String nodeId) throws NodeStoreException {
148153
return nodeStore.countNodeAffiliations(nodeId);
@@ -468,6 +473,5 @@ public ResultSet<NodeThread> getNodeThreads(String node, String afterId,
468473
@Override
469474
public int countNodeThreads(String node) throws NodeStoreException {
470475
return nodeStore.countNodeThreads(node);
471-
}
472-
476+
}
473477
}

0 commit comments

Comments
 (0)