Skip to content

Commit 1a3479d

Browse files
committed
Merge branch 'master' of github.com:processing/processing-sound
2 parents 5ccb4e7 + 431d5ff commit 1a3479d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/processing/sound/AudioSample.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* If you want to pre-load your audio sample with an audio file from disk you
1515
* can do so using the SoundFile subclass.
1616
*
17-
* @see SoundFile
1817
* @webref sound
1918
*/
2019
public class AudioSample extends SoundObject {
@@ -212,7 +211,6 @@ public float duration() {
212211
*
213212
* @webref sound
214213
* @return The number of frames of the audiosample.
215-
* @see duration()
216214
**/
217215
public int frames() {
218216
return this.sample.getNumFrames();
@@ -361,7 +359,7 @@ public void loop(float rate, float pos, float amp) {
361359
* @param add
362360
* offset the output of the generator by the given value
363361
* @webref sound
364-
*/
362+
**/
365363
public void loop(float rate, float pos, float amp, float add) {
366364
this.add(add);
367365
this.loop(rate, pos, amp);

src/processing/sound/SoundFile.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ public float duration() {
134134
*
135135
* @webref sound
136136
* @return The number of frames of this soundfile.
137-
* @see duration()
138137
**/
139138
public int frames() {
140139
return super.frames();

0 commit comments

Comments
 (0)