Removed two warnings.

This commit is contained in:
the_fiddler 2008-07-04 16:41:17 +00:00
parent 486a3cf645
commit bcd8d4c9bc
2 changed files with 2 additions and 2 deletions

View file

@ -86,7 +86,7 @@ namespace OpenTK.Audio
} }
} }
} }
catch (Exception e) catch (Exception)
{ {
s.Close(); s.Close();
throw; throw;

View file

@ -191,7 +191,7 @@ namespace OpenTK.Audio
//return new SoundData(decoded_data, new SoundFormat(channels, bits_per_sample, sample_rate)); //return new SoundData(decoded_data, new SoundFormat(channels, bits_per_sample, sample_rate));
return decoded_data; return decoded_data;
} }
catch (AudioReaderException e) catch (AudioReaderException)
{ {
reader.Close(); reader.Close();
throw; throw;