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
28 changes: 0 additions & 28 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ib/

# Visual Studio 2015/2017 cache/options directory
.vs/
Expand Down
4 changes: 3 additions & 1 deletion src/X12.Parsing/X12Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
Expand Down Expand Up @@ -151,6 +150,9 @@ public List<Interchange> ParseMultiple(Stream stream)
/// <param name="encoding">Stream encoding for reading data</param>
/// <returns><see cref="Interchange"/> collection parsed from X12</returns>
/// <exception cref="InvalidOperationException">Thrown on any missing segments or parent IDs</exception>
/// <exception cref="TransactionValidationException">
/// Thrown if segment cannot be identified and validated against the current specification
/// </exception>
public List<Interchange> ParseMultiple(Stream stream, Encoding encoding)
{
var envelopes = new List<Interchange>();
Expand Down
Loading