Remove unused variables causing compile warnings.

This commit is contained in:
Jim Norman
2006-11-28 06:49:46 +00:00
parent 20ae282ddb
commit ee795f0f41
18 changed files with 40 additions and 41 deletions

View File

@@ -115,7 +115,7 @@ public class AggregationPol : CASAPol
aggPolElem.AppendChild(storeElem);
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}

View File

@@ -117,7 +117,7 @@ public class ICASAPol
string path = homeDir + XmlConsts.policyFileName;
return path;
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -138,7 +138,7 @@ public class ICASAPol
policies[3] = GetPolicy(CASAPolType.SYNCH_POL);
return policies;
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -172,7 +172,7 @@ public class ICASAPol
writer.Close();
return true;
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -205,7 +205,7 @@ public class ICASAPol
return aggPol;
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -267,7 +267,7 @@ public class ICASAPol
{
htSecretPolicies.Add(idNode.Value, nvc);
}
catch (Exception e)
catch (Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -278,7 +278,7 @@ public class ICASAPol
return persistencePol;
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -325,7 +325,7 @@ public class ICASAPol
return uiPol;
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -368,7 +368,7 @@ public class ICASAPol
synchPol = new SynchPol(linkGrpList);
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -411,7 +411,7 @@ public class ICASAPol
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -520,7 +520,7 @@ public class ICASAPol
SetPolicies(policies);
return true;
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}

View File

@@ -155,7 +155,7 @@ public class KWLinkKey : LinkKey
attr.Value = keyId;
linkKeyElem.SetAttributeNode(attr);
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -198,7 +198,7 @@ public class GKLinkKey : LinkKey
attr.Value = keyId;
linkKeyElem.SetAttributeNode(attr);
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -244,7 +244,7 @@ public class MZLinkKey : LinkKey
linkKeyElem.SetAttributeNode(attr);
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -288,7 +288,7 @@ public class FXLinkKey : LinkKey
linkKeyElem.SetAttributeNode(attr);
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -327,7 +327,7 @@ public class CASALinkKey : LinkKey
linkKeyElem.SetAttributeNode(attr);
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -370,7 +370,7 @@ public class Link
linkElem.AppendChild(linkKeyElem);
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -416,7 +416,7 @@ public class LinkGroup
linkGroupElem.AppendChild(linkElem);
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}
@@ -471,7 +471,7 @@ public class SynchPol: CASAPol
// linkGroups[i].AppendToDoc(doc);
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}

View File

@@ -155,7 +155,7 @@ namespace Novell.CASA.CASAPolicy
}
}
catch(Exception e)
catch(Exception)
{
//Console.WriteLine(e.ToString());
}