Skip to content

Commit 617ab22

Browse files
committed
update
1 parent b88d566 commit 617ab22

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

QRCoder/QRCodeGenerator/OptimizedDataSegment.cs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -204,21 +204,4 @@ static int CountConsecutive(string text, int startPos, Func<char, bool> predicat
204204
// Checks if a character is alphanumeric (can be encoded in alphanumeric mode).
205205
static bool IsAlphanumeric(char c) => AlphanumericEncoder.CanEncode(c);
206206
}
207-
208-
/// <summary>
209-
/// Helper struct to store segment information during optimization.
210-
/// </summary>
211-
private readonly struct SegmentInfo
212-
{
213-
public int Start { get; }
214-
public int Length { get; }
215-
public EncodingMode Mode { get; }
216-
217-
public SegmentInfo(int start, int length, EncodingMode mode)
218-
{
219-
Start = start;
220-
Length = length;
221-
Mode = mode;
222-
}
223-
}
224207
}

0 commit comments

Comments
 (0)