Skip to content
Permalink
14be1aa1ba
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit 14be1aa May 3, 2017 History
0 contributors

Users who have contributed to this file

10 lines (8 sloc) 162 Bytes
class internet2 implements Serializable {
def maintainer() {
"tier"
}
def caution(message){
echo "Hello, ${maintainer}! CAUTION: ${message}"
}
}