mirror of
https://github.com/jwdeveloper/TikTokLiveJava.git
synced 2026-03-01 17:59:39 -05:00
Revert to StringBuilder and stacking stream line!
This commit is contained in:
@@ -40,6 +40,9 @@ public class TikTokCookieJar {
|
||||
}
|
||||
|
||||
public String parseCookies() {
|
||||
return cookies.entrySet().stream().map(entry -> entry.getKey()+"="+entry.getValue()+";").collect(Collectors.joining());
|
||||
return cookies.entrySet()
|
||||
.stream()
|
||||
.map(entry -> entry.getKey()+"="+entry.getValue()+";")
|
||||
.collect(Collectors.joining());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user