From: Roman Shevchenko Date: Fri, 14 Nov 2014 12:34:27 +0000 (+0100) Subject: Cleanup (formatting) X-Git-Tag: pycharm/140.574~24^2~7 X-Git-Url: https://git.jetbrains.org/?p=idea%2Fcommunity.git;a=commitdiff_plain;h=f3b2f3ca06c69a62e8b2c1f690a791eb69f4f2c4 Cleanup (formatting) --- 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;