Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main/SS/Formula/Functions/DateValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public override ValueEval Evaluate(int srcRowIndex, int srcColumnIndex, ValueEva
}
}
}
catch (FormatException e)
catch (FormatException)
{
return ErrorEval.VALUE_INVALID;
}
Expand All @@ -92,7 +92,7 @@ private int parseMonth(String monthPart)
{
return int.Parse(monthPart);
}
catch (FormatException ignored)
catch (FormatException)
{
}

Expand Down
2 changes: 1 addition & 1 deletion main/SS/Formula/Functions/Indirect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private static ValueEval EvaluateIndirect(OperationEvaluationContext ec, String
{
areaPtg = FormulaParser.ParseStructuredReference(refText, (IFormulaParsingWorkbook)ec.GetWorkbook(), ec.RowIndex);
}
catch (FormulaParseException e)
catch (FormulaParseException)
{
return ErrorEval.REF_INVALID;
}
Expand Down
2 changes: 1 addition & 1 deletion ooxml/POIXMLDocumentPart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ protected RelationPart CreateRelationship(POIXMLRelation descriptor, POIXMLFacto
}
return new RelationPart(rel, doc);
}
catch (PartAlreadyExistsException pae)
catch (PartAlreadyExistsException)
{
// Return the specific exception so the user knows
// that the name is already taken
Expand Down