Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeugma440 committed Feb 11, 2024
1 parent 8d2ccbc commit f189d2e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions ATL/AudioData/AudioDataManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static ATL.AudioData.MetaDataIOFactory;

Expand Down Expand Up @@ -245,9 +244,9 @@ where isMetaSupported(tagType)
}

/// <summary>
/// List the tag types recommended by the format of the current file
/// List the tag types recommended for the format of the current file
/// </summary>
/// <returns>Tag types recommended by the format of the current file</returns>
/// <returns>Tag types recommended for the format of the current file</returns>
public ISet<TagType> getRecommendedMetas()
{
ISet<TagType> result = new HashSet<TagType>();
Expand Down Expand Up @@ -420,7 +419,7 @@ private void handleEmbedder(Stream r, IMetaDataIO theMetaIO)
[Zomp.SyncMethodGenerator.CreateSyncVersion]
public async Task<bool> RemoveTagFromFileAsync(TagType tagType, ProgressManager progressManager = null)
{
bool result = false;
bool result;
LogDelegator.GetLocateDelegate()(fileName);

try
Expand All @@ -438,7 +437,7 @@ public async Task<bool> RemoveTagFromFileAsync(TagType tagType, ProgressManager
if (null == stream) s.Close();
}
}
catch (System.Exception e)
catch (Exception e)
{
Utils.TraceException(e);
result = false;
Expand Down

0 comments on commit f189d2e

Please sign in to comment.