Skip to content

Commit

Permalink
reverting a change which made javac fail
Browse files Browse the repository at this point in the history
  • Loading branch information
libetl committed Oct 6, 2016
1 parent b4ce3f7 commit 9d7830e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ public FluentClientSoundImported extractSound () throws SoundTransformException
throw new SoundTransformException (FluentClientErrorCode.NO_SPECTRUM_IN_INPUT, new IllegalArgumentException ());
}
@SuppressWarnings (FluentClient.UNCHECKED)
final Channel [] sound1 = new ApplySoundTransform (this.getObservers ()).apply (this.spectrums.toArray (new Spectrum [0] [0]), new SpectrumsToSoundSoundTransform ());
final Channel [] sound1 = new ApplySoundTransform (this.getObservers ()).<Spectrum<Serializable> [], Channel> apply (this.spectrums.toArray (new Spectrum [0] [0]), new SpectrumsToSoundSoundTransform ());
this.cleanData ();
this.sound = new Sound (sound1);
return this;
Expand Down

0 comments on commit 9d7830e

Please sign in to comment.