Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2015-12-10 12:44:55 +0300
committerRolf Bjarne Kvinge <rolf@xamarin.com>2015-12-23 14:01:40 +0300
commitf7f66cb6d07039f485b7816dfac4336c53d77d89 (patch)
tree69bc668ac8c9443bb8d51854414d2917969efe95 /mcs
parent6295dc7dbd2a7227e8e305c1b986bb7e725e8240 (diff)
[mkbundle] Fix compiler warnings.
Diffstat (limited to 'mcs')
-rwxr-xr-xmcs/tools/mkbundle/mkbundle.cs4
1 files 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;
}