Map dirEntsMap = new SVNHashMap();
HTTPStatus status = DAVUtil.getProperties(myConnection, path, DAVUtil.DEPTH_ONE, null, dirProperties, dirEntsMap);
if (status.getError() != null) {
SVNErrorManager.error(status.getError(), SVNLogType.NETWORK);
}
for(Iterator dirEnts = dirEntsMap.keySet().iterator(); dirEnts.hasNext();) {
String url = (String) dirEnts.next();
DAVProperties child = (DAVProperties) dirEntsMap.get(url);
String href = child.getURL();
String name = "";
if (parentPathSegments != SVNPathUtil.getSegmentsCount(href)) {