Fixed exception (was caught but unneeded)

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1738 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-04-02 10:57:47 +00:00
commit 48ef5ca0c9

View file

@ -261,10 +261,8 @@ namespace Greenshot.Helpers {
// check if this plugin is already available // check if this plugin is already available
PluginAttribute checkPluginAttribute = null; PluginAttribute checkPluginAttribute = null;
try { if (tmpAttributes.ContainsKey(pluginAttribute.Name)) {
checkPluginAttribute = tmpAttributes[pluginAttribute.Name]; checkPluginAttribute = tmpAttributes[pluginAttribute.Name];
} catch {
} }
if (checkPluginAttribute != null) { if (checkPluginAttribute != null) {