From f3b2f3ca06c69a62e8b2c1f690a791eb69f4f2c4 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Fri, 14 Nov 2014 13:34:27 +0100 Subject: [PATCH] Cleanup (formatting) --- .../intellij/notification/Notification.java | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/platform/platform-api/src/com/intellij/notification/Notification.java b/platform/platform-api/src/com/intellij/notification/Notification.java index 7b3ecd67ca47..fc818e4e5239 100644 --- a/platform/platform-api/src/com/intellij/notification/Notification.java +++ b/platform/platform-api/src/com/intellij/notification/Notification.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2013 JetBrains s.r.o. + * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,19 +44,23 @@ public class Notification { private Boolean myImportant; private WeakReference myBalloonRef; - public Notification(@NotNull final String groupDisplayId, @NotNull final String title, @NotNull final String content, @NotNull final NotificationType type) { + public Notification(@NotNull String groupDisplayId, @NotNull String title, @NotNull String content, @NotNull NotificationType type) { this(groupDisplayId, title, content, type, null); } /** * @param groupDisplayId this should be a human-readable, capitalized string like "Facet Detector". * It will appear in "Notifications" configurable. - * @param title notification title - * @param content notification content - * @param type notification type - * @param listener notification lifecycle listener + * @param title notification title + * @param content notification content + * @param type notification type + * @param listener notification lifecycle listener */ - public Notification(@NotNull final String groupDisplayId, @NotNull final String title, @NotNull final String content, @NotNull final NotificationType type, @Nullable NotificationListener listener) { + public Notification(@NotNull String groupDisplayId, + @NotNull String title, + @NotNull String content, + @NotNull NotificationType type, + @Nullable NotificationListener listener) { myGroupId = groupDisplayId; myTitle = title; myContent = content; -- 2.32.0