summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2010-01-30 12:22:33 +0200
committerVille Skyttä <ville.skytta@iki.fi>2010-01-30 12:22:33 +0200
commitf62a4ad7b2dee45e39323a89dfaa099db2e272fe (patch)
tree92113c53bceeaabf4c401554bd106e3f60b9b5c3
parent1061876bbc70f2e3d9c6d09fcd06796df2d59123 (diff)
downloadbash-completion-f62a4ad7b2dee45e39323a89dfaa099db2e272fe.tar.gz
Indentation fixes.
-rw-r--r--contrib/java16
1 files changed, 8 insertions, 8 deletions
diff --git a/contrib/java b/contrib/java
index 426be1d7..cbd29f19 100644
--- a/contrib/java
+++ b/contrib/java
@@ -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