From 61ca96d78fc66ad0af9483db47d6b0716d11d3b1 Mon Sep 17 00:00:00 2001 From: Daniel Platz Date: Fri, 20 Jan 2017 19:53:42 +0100 Subject: [PATCH] Removed commented code --- plugins/ant/ant.plugin.zsh | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/ant/ant.plugin.zsh b/plugins/ant/ant.plugin.zsh index eb4312a3..3eba30a6 100644 --- a/plugins/ant/ant.plugin.zsh +++ b/plugins/ant/ant.plugin.zsh @@ -18,14 +18,12 @@ _ant () { build_file="$words[3]" fi - #local build_file=$(ls (ant*.xml|build.xml)) if [ $? -eq 0 -a -f $build_file ]; then if _ant_does_target_list_need_generating $build_file; then ant -f $build_file -p | awk -F " " 'NR > 5 { print lastTarget }{lastTarget = $1}' > .ant_targets fi compadd -- $(cat .ant_targets) fi - #_values 'target' a b c d e ;; esac }