From ea44b06de028026ce9147806fcbfa82f4d3fe680 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 19:26:07 +0000 Subject: [PATCH] style: format code with Google Java Format This commit fixes the style issues introduced in 3ded8b4 according to the output from Google Java Format. Details: None --- .../github/brenoepics/at4j/core/exceptions/AzureException.java | 3 +-- .../brenoepics/at4j/util/rest/RestRequestResultErrorCode.java | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/github/brenoepics/at4j/core/exceptions/AzureException.java b/src/main/java/com/github/brenoepics/at4j/core/exceptions/AzureException.java index 4ce7f7e..8e51cea 100644 --- a/src/main/java/com/github/brenoepics/at4j/core/exceptions/AzureException.java +++ b/src/main/java/com/github/brenoepics/at4j/core/exceptions/AzureException.java @@ -1,9 +1,8 @@ package com.github.brenoepics.at4j.core.exceptions; -import java.util.Optional; - import com.github.brenoepics.at4j.util.rest.RestRequestInformation; import com.github.brenoepics.at4j.util.rest.RestRequestResponseInformation; +import java.util.Optional; /** This exception is always thrown whenever a request to azure failed. */ public class AzureException extends Exception { diff --git a/src/main/java/com/github/brenoepics/at4j/util/rest/RestRequestResultErrorCode.java b/src/main/java/com/github/brenoepics/at4j/util/rest/RestRequestResultErrorCode.java index bf01431..a338bcb 100644 --- a/src/main/java/com/github/brenoepics/at4j/util/rest/RestRequestResultErrorCode.java +++ b/src/main/java/com/github/brenoepics/at4j/util/rest/RestRequestResultErrorCode.java @@ -1,5 +1,6 @@ package com.github.brenoepics.at4j.util.rest; +import com.github.brenoepics.at4j.core.exceptions.*; import java.util.Arrays; import java.util.Collections; import java.util.Map; @@ -7,8 +8,6 @@ import java.util.function.Function; import java.util.stream.Collectors; -import com.github.brenoepics.at4j.core.exceptions.*; - /** * An enum with all rest request result codes as defined by Azure