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
case ${COMP_WORDS[$i]} in
-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
_filedir
return 0
;;
# once we've seen a class, just do filename completion
_filedir
return 0
;;
esac
done