Indentation fixes.

This commit is contained in:
Ville Skyttä 2010-01-30 12:22:33 +02:00
parent 1061876bbc
commit f62a4ad7b2

View File

@ -128,16 +128,16 @@ _java()
for ((i=1; i < $COMP_CWORD; i++)); do for ((i=1; i < $COMP_CWORD; i++)); do
case ${COMP_WORDS[$i]} in case ${COMP_WORDS[$i]} in
-cp|-classpath) -cp|-classpath)
((i++)) # skip the classpath string. ((i++)) # skip the classpath string.
;; ;;
-*) -*)
# this is an option, not a class/jarfile name. # this is an option, not a class/jarfile name.
;; ;;
*) *)
# once we've seen a class, just do filename completion # once we've seen a class, just do filename completion
_filedir _filedir
return 0 return 0
;; ;;
esac esac
done done