mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 10:21:52 +02:00
Fix minor comment fixes
Change-Id: I23c880a5b42fba5f319cca17d59fc2f601befef9
This commit is contained in:
parent
7d691f3f1e
commit
10b5357dc9
@ -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);
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user