simplify: Remove last_cache_file_output and last_filename

This isn't used any more.
This commit is contained in:
Chris Down 2019-11-10 12:17:25 +00:00
parent 0c1f4b7a66
commit 8ac7bd305c

View file

@ -64,11 +64,8 @@ flock -x -n "$session_lock_fd" ||
die 2 "Can't lock session file -- is another clipmenud running?"
declare -A last_data
declare -A last_filename
declare -A last_cache_file_output
command -v clipnotify >/dev/null 2>&1 || die 3 "clipnotify binary missing"
command -v xdotool >/dev/null 2>&1 && has_xdotool=1
if [[ $CM_IGNORE_WINDOW ]] && ! (( has_xdotool )); then
@ -113,7 +110,6 @@ while clipnotify; do
filename="$cache_dir/$(cksum <<< "$first_line")"
last_data[$selection]=$data
last_filename[$selection]=$filename
# Recover if cache_dir was deleted. It's ok that we only chmod our dir.
# shellcheck disable=SC2174
@ -121,8 +117,6 @@ while clipnotify; do
printf '%s' "$data" > "$filename"
printf '%s\n' "$cache_file_output" >> "$cache_file"
last_cache_file_output[$selection]=$cache_file_output
done
flock -u "$lock_fd"