Removed left-behind helper functions in git-flow.
They were left behind in the main git-flow script, since they are moved
over to gitflow-common.
diff --git a/git-flow b/git-flow
index 84adc05..d1e17c6 100755
--- a/git-flow
+++ b/git-flow
@@ -78,11 +78,4 @@
cmd_$SUBACTION "$@"
}
-# helper functions for common reuse
-max() { if [ "$1" -gt "$2" ]; then echo "$1"; else echo "$2"; fi; }
-
-# convenience functions for checking whether flags have been set or not
-flag() { eval FLAG=\$FLAGS_$1; [ $FLAG -eq $FLAGS_TRUE ]; }
-noflag() { eval FLAG=\$FLAGS_$1; [ $FLAG -ne $FLAGS_TRUE ]; }
-
main "$@"