adium/adium

Remove redundant casts.

2013-06-02, Frank Dowsett
47db4a69f78e
Remove redundant casts.
global HandyAdiumScripts
on run
tell application "Adium"
set m to (get minimizable of window 1)
try
set minimizable of window 1 to false
--should never get here
set minimizable of window 1 to m --restore
error
on error number num
if num is -2700 then error
end try
end tell
end run