From f7f66cb6d07039f485b7816dfac4336c53d77d89 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 10 Dec 2015 10:44:55 +0100 Subject: [PATCH] [mkbundle] Fix compiler warnings. --- mcs/tools/mkbundle/mkbundle.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mcs/tools/mkbundle/mkbundle.cs b/mcs/tools/mkbundle/mkbundle.cs index 697ab877017..dbf21c44beb 100755 --- a/mcs/tools/mkbundle/mkbundle.cs +++ b/mcs/tools/mkbundle/mkbundle.cs @@ -575,7 +575,7 @@ void mono_register_config_for_assembly (const char* assembly_name, cons } assemblies.Add (a.CodeBase); - } catch (Exception e) { + } catch (Exception) { if (skip_scan) { Console.WriteLine ("File will not be scanned: {0}", name); assemblies.Add (new Uri (new FileInfo (name).FullName).ToString ()); @@ -621,7 +621,7 @@ void mono_register_config_for_assembly (const char* assembly_name, cons if (!QueueAssembly (files, a.CodeBase)) return false; } - } catch (Exception e) { + } catch (Exception) { if (!skip_scan) throw; } -- 2.25.1