dynamicGerritProject.setBranches(branches);
} else if (SHORTNAME_TOPIC.equals(item)) { // Topic
if (topics == null) {
throw new ParseException("Line " + lineNr + ": attempt to use 'Topic' before 'Project'", lineNr);
}
Topic topic = new Topic(type, text);
topics.add(topic);
dynamicGerritProject.setTopics(topics);
} else if (SHORTNAME_FILE.equals(item)) { // FilePath
if (filePaths == null) {
throw new ParseException("Line " + lineNr + ": attempt to use 'FilePath' before 'Project'", lineNr);