Skip to content

Commit

Permalink
dummy
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSkidder committed Nov 2, 2024
1 parent 94f891d commit 89e19d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions shared/java/top/fpsmaster/utils/awt/RoundUtil.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ object RoundUtil {

@JvmStatic
fun generateRound(radius: Int) {
if (radius <= 0) {
return
}
if (generated.contains(radius)) {
return
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ object MicrosoftLogin {
val responseBody = exchange.responseBody
responseBody.write(result.toByteArray(StandardCharsets.UTF_8))
httpServer!!.stop(3)
// Hanabi.INSTANCE.notificationsManager.add(new Info("Trying to login...", Notification.Type.Info));
val code = s1.substring(s1.indexOf("=") + 1)
map["client_id"] = CLIENT_ID
map["code"] = code
Expand Down

0 comments on commit 89e19d9

Please sign in to comment.