From db7c302b9d048d6d2789f754b4283a224de20ba0 Mon Sep 17 00:00:00 2001 From: James Elliott Date: Thu, 5 Dec 2024 22:03:28 -0600 Subject: [PATCH] Remove incorrect JavaDoc replacement The overridden JavaDoc was correct; this must have been copied from the Beat class. --- .../java/org/deepsymmetry/beatlink/PrecisePosition.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main/java/org/deepsymmetry/beatlink/PrecisePosition.java b/src/main/java/org/deepsymmetry/beatlink/PrecisePosition.java index 2fdc297..37389f3 100644 --- a/src/main/java/org/deepsymmetry/beatlink/PrecisePosition.java +++ b/src/main/java/org/deepsymmetry/beatlink/PrecisePosition.java @@ -72,14 +72,6 @@ public int getPlaybackPosition() { return playbackPosition; } - /** - * Get the device pitch at the time of the beat. This is an integer ranging from 0 to 2097152, which corresponds - * to a range between completely stopping playback to playing at twice normal tempo. The equivalent percentage - * value can be obtained by passing the pitch to {@link Util#pitchToPercentage(long)}, and the corresponding - * fractional scaling value by passing it to {@link Util#pitchToMultiplier(long)}. - * - * @return the raw device pitch - */ @Override public int getPitch() { return pitch;