Skip to content

Commit 5db1afd

Browse files
committed
class renaming
1 parent 9fd4fe5 commit 5db1afd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ZUGFeRD/InvoiceDescriptor.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ public static ZUGFeRDVersion GetVersion(string filename)
335335
return ZUGFeRDVersion.Version1;
336336
}
337337

338-
reader = new InvoiceDescriptor22UblReader();
338+
reader = new InvoiceDescriptor22UBLReader();
339339
if (reader.IsReadableByThisReaderVersion(filename))
340340
{
341341
return ZUGFeRDVersion.Version22;
@@ -374,7 +374,7 @@ public static ZUGFeRDVersion GetVersion(Stream stream)
374374
return ZUGFeRDVersion.Version1;
375375
}
376376

377-
reader = new InvoiceDescriptor22UblReader();
377+
reader = new InvoiceDescriptor22UBLReader();
378378
if (reader.IsReadableByThisReaderVersion(stream))
379379
{
380380
return ZUGFeRDVersion.Version22;
@@ -414,7 +414,7 @@ public static InvoiceDescriptor Load(Stream stream)
414414
return reader.Load(stream);
415415
}
416416

417-
reader = new InvoiceDescriptor22UblReader();
417+
reader = new InvoiceDescriptor22UBLReader();
418418
if (reader.IsReadableByThisReaderVersion(stream))
419419
{
420420
return reader.Load(stream);
@@ -453,7 +453,7 @@ public static InvoiceDescriptor Load(string filename)
453453
return reader.Load(filename);
454454
}
455455

456-
reader = new InvoiceDescriptor22UblReader();
456+
reader = new InvoiceDescriptor22UBLReader();
457457
if (reader.IsReadableByThisReaderVersion(filename))
458458
{
459459
return reader.Load(filename);

ZUGFeRD/InvoiceDescriptor22UblReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
namespace s2industries.ZUGFeRD
3030
{
31-
internal class InvoiceDescriptor22UblReader : IInvoiceDescriptorReader
31+
internal class InvoiceDescriptor22UBLReader : IInvoiceDescriptorReader
3232
{
3333
/// <summary>
3434
/// Parses the ZUGFeRD invoice from the given stream.

0 commit comments

Comments
 (0)