Skip to content

Commit

Permalink
merge corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
barnhill committed Apr 29, 2024
1 parent 03c6ba2 commit e0ce889
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions BarcodeStandard/Symbologies/Code93.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using BarcodeStandard;

namespace BarcodeStandard.Symbologies
{
/// <summary>
/// Code 93 encoding
/// Written by: Brad Barnhill
/// </summary>
class Code93 : BarcodeCommon, IBarcode
internal class Code93 : BarcodeCommon, IBarcode
{
private readonly System.Data.DataTable C93_Code = new System.Data.DataTable("C93_Code");

private Dictionary<char, Code93CodeWord> codewordPatterns;
private Dictionary<char, string> fullASCIITranslationTable;
private Dictionary<int, char> codeWordToChar;
Expand Down

0 comments on commit e0ce889

Please sign in to comment.