Fix minor comment fixes

Change-Id: I23c880a5b42fba5f319cca17d59fc2f601befef9
This commit is contained in:
Yuta HIGUCHI 2018-04-30 18:28:11 -07:00 committed by Yuta HIGUCHI
parent 7d691f3f1e
commit 10b5357dc9
2 changed files with 1 additions and 3 deletions

View File

@ -150,7 +150,6 @@ public interface Driver extends Annotations {
* @param defaultValue to use if the property is not defined in this driver nor in any of its ancestors
* @return the value of the property,
* or {@code defaultValue} if the property is not defined in this driver nor in any of its ancestors
* @return
*/
default String getProperty(String name, String defaultValue) {
return Optional.ofNullable(getProperty(name)).orElse(defaultValue);

View File

@ -4,7 +4,7 @@
# -----------------------------------------------------------------------------
if [ $# -ne 3 -a $# -ne 4 ]; then
echo "Usage: onos-build-release version next-version branch [--dry-run]"
echo "Usage: onos-build-release branch version next-version [--dry-run]"
echo "For example, to build rc2 on the 1.8 branch - onos-build-release onos-1.8 1.8.0-rc2 1.8.0-SNAPSHOT"
exit 1
fi
@ -42,4 +42,3 @@ if [ ${IS_DRY_RUN} -eq 0 ]; then
# Unblock commits
ssh -p 29418 gerrit.onosproject.org projectlock unlock onos ${BRANCH}
fi