diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index f6b020489..a3b675ea2 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -26,7 +26,7 @@ jobs: run: dotnet build --no-restore working-directory: FinModelUtility - name: Test - run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov /p:ExcludeByFile="**/KSoft/**/*.cs,**/SceneGate/**/*.cs" + run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov /p:ExcludeByFile=**/Fin.Ui/**/*.cs,**/KSoft/**/*.cs,**/SceneGate/**/*.cs working-directory: FinModelUtility - name: Set Up NPM diff --git a/FinModelUtility/Formats/Ast/Ast/src/schema/AstAdpcm.cs b/FinModelUtility/Formats/Ast/Ast/src/schema/AstAdpcm.cs index 76aa623e8..f83f69541 100644 --- a/FinModelUtility/Formats/Ast/Ast/src/schema/AstAdpcm.cs +++ b/FinModelUtility/Formats/Ast/Ast/src/schema/AstAdpcm.cs @@ -37,10 +37,6 @@ private void ReadAdpcm_(IBinaryReader br) { var blocks = new LinkedList<(byte[] left, byte[] right)>(); while (!br.Eof) { - if (br.Eof) { - break; - } - var blckHeader = br.ReadNew(); // TODO: Does this need to be split up as left/right channels??