Skip to content

Commit 3bfd7cc

Browse files
authored
Removed unused classes and interfaces . (#1612)
1 parent 102db47 commit 3bfd7cc

File tree

7 files changed

+3
-400
lines changed

7 files changed

+3
-400
lines changed

src/EPPlus/FormulaParsing/Excel/Functions/BuiltInFunctions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ public BuiltInFunctions()
261261
Functions["expondist"] = new Expondist();
262262
Functions["expon.dist"] = new ExponDotDist();
263263
Functions["steyx"] = new Steyx();
264-
Functions["t.dist"] = new TDist();
265-
Functions["tdist"] = new TDotDist();
264+
Functions["t.dist"] = new TDotDist();
265+
Functions["tdist"] = new TDist();
266266
Functions["t.dist.2t"] = new TDist2t();
267267
Functions["t.inv"] = new TInv();
268268
Functions["t.dist.rt"] = new TDistRt();

src/EPPlus/FormulaParsing/IParsingLifetimeEventHandler.cs

Lines changed: 0 additions & 30 deletions
This file was deleted.

src/EPPlus/FormulaParsing/ParsingContext.cs

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace OfficeOpenXml.FormulaParsing
2525
/// <summary>
2626
/// Parsing context
2727
/// </summary>
28-
public class ParsingContext : IParsingLifetimeEventHandler
28+
public class ParsingContext
2929
{
3030
private ParsingContext(ExcelPackage package) {
3131
SubtotalAddresses = new HashSet<ulong>();
@@ -76,18 +76,6 @@ internal HiddenCellHandlingCategory HiddenCellBehaviour
7676
/// Configuration
7777
/// </summary>
7878
public ParsingConfiguration Configuration { get; set; }
79-
80-
///// <summary>
81-
///// Scopes, a scope represents the parsing of a cell or a value.
82-
///// </summary>
83-
//public ParsingScopes Scopes { get; private set; }
84-
85-
///// <summary>
86-
///// Address cache
87-
///// </summary>
88-
///// <seealso cref="ExcelAddressCache"/>
89-
//public ExcelAddressCache AddressCache { get; private set; }
90-
9179
/// <summary>
9280
/// Returns true if a <see cref="IFormulaParserLogger"/> is attached to the parser.
9381
/// </summary>
@@ -121,12 +109,6 @@ public static ParsingContext Create()
121109
return Create(null);
122110
}
123111

124-
void IParsingLifetimeEventHandler.ParsingCompleted()
125-
{
126-
//AddressCache.Clear();
127-
// SubtotalAddresses.Clear();
128-
}
129-
130112
internal int GetWorksheetIndex(string wsName)
131113
{
132114
if(string.IsNullOrEmpty(wsName))

src/EPPlus/FormulaParsing/ParsingScope.cs

Lines changed: 0 additions & 81 deletions
This file was deleted.

src/EPPlus/FormulaParsing/ParsingScopes.cs

Lines changed: 0 additions & 82 deletions
This file was deleted.

src/EPPlusTest/FormulaParsing/ParsingScopeTests.cs

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)