Cleanup (warnings; formatting)

This commit is contained in:
Roman Shevchenko
2017-08-22 17:55:57 +02:00
parent c43a3e33b8
commit c94ee736b6
2 changed files with 10 additions and 11 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2012 JetBrains s.r.o.
* Copyright 2000-2017 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.
@@ -13,16 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* @author max
*/
package com.intellij.psi.impl.compiled;
/**
* @author max
*/
public class OutOfOrderInnerClassException extends RuntimeException {
@SuppressWarnings("NonSynchronizedMethodOverridesSynchronizedMethod")
@Override
public Throwable fillInStackTrace() {
return this;
}
}
}
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2012 JetBrains s.r.o.
* Copyright 2000-2017 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.
@@ -28,7 +28,7 @@ public abstract class FrameTitleBuilder {
return ServiceManager.getService(FrameTitleBuilder.class);
}
public abstract String getProjectTitle(@NotNull final Project project);
public abstract String getProjectTitle(@NotNull Project project);
public abstract String getFileTitle(@NotNull final Project project, @NotNull final VirtualFile file);
}
public abstract String getFileTitle(@NotNull Project project, @NotNull VirtualFile file);
}