Skip to content

Commit f7adeef

Browse files
committed
Fix checkstyle
1 parent 1ca8275 commit f7adeef

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingParameterUtils.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,11 @@ private static String validateFunction(@Nonnull final String function) {
234234
}
235235

236236
/**
237-
* Removes an early return statement from the code of the throttling parameter deobfuscation function.
237+
* Removes an early return statement from the code of the throttling parameter deobfuscation
238+
* function.
238239
*
239-
* <p>In newer version of the player code the function contains a check for something defined outside of the function.
240-
* If that was not found it will return early.
240+
* <p>In newer version of the player code the function contains a check for something defined
241+
* outside of the function. If that was not found it will return early.
241242
*
242243
* <p>The check can look like this (JS):<br>
243244
* if(typeof RUQ==="undefined")return p;
@@ -247,7 +248,8 @@ private static String validateFunction(@Nonnull final String function) {
247248
* For that reason this check and return statement needs to be removed.
248249
*
249250
* @param function the original throttling parameter deobfuscation function code
250-
* @return the throttling parameter deobfuscation function code with the early return statement removed
251+
* @return the throttling parameter deobfuscation function code with the early return statement
252+
* removed
251253
*/
252254
@Nonnull
253255
private static String fixupFunction(@Nonnull final String function)

0 commit comments

Comments
 (0)