Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pullrequest IntelliJ IDEA 2024.2.2 #719

Merged
merged 8 commits into from
Oct 9, 2024
8 changes: 1 addition & 7 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ private static String formatInstant(final Instant instant) {
* @return XmlError or XmlContacts
* error message or contact list in xml
*/
@SuppressWarnings("GrazieInspection")
@PostMapping(value = REQUEST_PATH, produces = MediaType.APPLICATION_XML_VALUE)
public DeferredResult<XmlContacts> getContactStatus(@RequestParam final String login, @RequestParam final String password, @RequestParam final String contacts) {
log.info("'{}' requested with login '{}'", REQUEST_PATH, login);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ final class PushNotificationsController {
* @return XmlError or XmlSuccessPushNotification
* error message or success message containing deviceType and pushId
*/
@SuppressWarnings({"SpellCheckingInspection", "GrazieInspection"})
@SuppressWarnings("SpellCheckingInspection")
@PostMapping(value = REQUEST_PATH, produces = MediaType.APPLICATION_XML_VALUE)
public XmlSuccessPushNotification storePushId(@RequestParam final String login, @RequestParam final String password, @RequestParam final int deviceType, @RequestParam final String pushId) {
log.info("'{}' requested with login '{}'", REQUEST_PATH, login);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
import jakarta.persistence.Table;
import java.time.Instant;

@SuppressWarnings("ClassWithTooManyMethods")
@NoArgsConstructor
@Getter
@Setter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
import jakarta.persistence.Table;
import java.time.Instant;

@SuppressWarnings("ClassWithTooManyMethods")
@NoArgsConstructor
@Getter
@Setter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

import javax.annotation.Nullable;

@SuppressWarnings("unused")
@AllArgsConstructor
@Slf4j
@Component
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public enum XmlErrorExceptionClientResponse {
REQUESTED_TOO_MANY_CONTACTS(XmlErrorRequestedTooManyContactsException.class, 50, "You have requested too many contacts. Try again in 24 hours."),
NO_CALL_SESSION (XmlErrorNoCallSessionException.class, 64, "unknown call session"),
FAILED_TO_TRIGGER_CALL (XmlErrorFailedToTriggerCallException.class, 65, "failed to call you"),
CALL_NPT_ALLOWED_ATM (XmlErrorCallNotAllowedAtTheMomentException.class, 68, "call not allowed at the moment"),
CALL_NOT_ALLOWED_ATM (XmlErrorCallNotAllowedAtTheMomentException.class, 68, "call not allowed at the moment"),
PUSH_NOTIFICATION_FAILED (XmlErrorFailedToRequestPushNotificationException.class, 98, "failed to request push notification")
;

Expand Down