Skip to content

Commit 1aa4c69

Browse files
committed
remove obsolete methods
1 parent 83b24f9 commit 1aa4c69

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/Spectrogram/SpectrogramGenerator.cs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -351,20 +351,6 @@ public Bitmap GetBitmapMax(double intensity = 1, bool dB = false, double dBScale
351351
return Image.GetBitmap(ffts2, Colormap, intensity, dB, dBScale, roll, NextColumnIndex);
352352
}
353353

354-
[Obsolete("The SFF file format is obsolete. " +
355-
"Users are encouraged to write their own IO routines specific to their application. " +
356-
"To get a copy of the original SFF reader/writer see https://github.com/swharden/Spectrogram/issues/44",
357-
error: true)]
358-
/// <summary>
359-
/// Export spectrogram data using the Spectrogram File Format (SFF)
360-
/// </summary>
361-
public void SaveData(string filePath, int melBinCount = 0)
362-
{
363-
if (!filePath.EndsWith(".sff", StringComparison.OrdinalIgnoreCase))
364-
filePath += ".sff";
365-
new SFF(this, melBinCount).Save(filePath);
366-
}
367-
368354
/// <summary>
369355
/// Defines the total number of FFTs (spectrogram columns) to store in memory. Determines Width.
370356
/// </summary>

0 commit comments

Comments
 (0)