Removed two warnings.
This commit is contained in:
parent
486a3cf645
commit
bcd8d4c9bc
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ namespace OpenTK.Audio
|
|||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
catch (Exception)
|
||||
{
|
||||
s.Close();
|
||||
throw;
|
||||
|
|
|
@ -191,7 +191,7 @@ namespace OpenTK.Audio
|
|||
//return new SoundData(decoded_data, new SoundFormat(channels, bits_per_sample, sample_rate));
|
||||
return decoded_data;
|
||||
}
|
||||
catch (AudioReaderException e)
|
||||
catch (AudioReaderException)
|
||||
{
|
||||
reader.Close();
|
||||
throw;
|
||||
|
|
Loading…
Reference in a new issue