mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
Cleanup (moving PasswordSafeException to an appropriate package)
GitOrigin-RevId: 3fec9940d24f7fa84e16596c51de31e7b14f4cbd
This commit is contained in:
committed by
intellij-monorepo-bot
parent
242ab56acf
commit
38a28db180
@@ -86,6 +86,10 @@ a:com.intellij.ide.passwordSafe.PasswordSafe
|
||||
- a:setRememberPasswordByDefault(Z):V
|
||||
f:com.intellij.ide.passwordSafe.PasswordSafe$Companion
|
||||
- f:getInstance():com.intellij.ide.passwordSafe.PasswordSafe
|
||||
c:com.intellij.ide.passwordSafe.PasswordSafeException
|
||||
- java.lang.RuntimeException
|
||||
- <init>(java.lang.String):V
|
||||
- <init>(java.lang.String,java.lang.Throwable):V
|
||||
com.intellij.ide.passwordSafe.PasswordStorage
|
||||
- a:get(com.intellij.credentialStore.CredentialAttributes):com.intellij.credentialStore.Credentials
|
||||
- getPassword(com.intellij.openapi.project.Project,java.lang.Class,java.lang.String):java.lang.String
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.intellij.ide.passwordSafe;
|
||||
|
||||
/**
|
||||
* @deprecated unused, left for binary compatibility
|
||||
*/
|
||||
/** @deprecated unused, left for binary compatibility */
|
||||
@SuppressWarnings("unused")
|
||||
@Deprecated
|
||||
@Deprecated(forRemoval = true)
|
||||
public class PasswordSafeException extends RuntimeException {
|
||||
public PasswordSafeException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
@@ -1147,10 +1147,6 @@ c:com.intellij.ide.errorTreeView.SimpleErrorData
|
||||
- getKind():com.intellij.ide.errorTreeView.ErrorTreeElementKind
|
||||
- getMessages():java.lang.String[]
|
||||
- getVf():com.intellij.openapi.vfs.VirtualFile
|
||||
c:com.intellij.ide.passwordSafe.PasswordSafeException
|
||||
- java.lang.RuntimeException
|
||||
- <init>(java.lang.String):V
|
||||
- <init>(java.lang.String,java.lang.Throwable):V
|
||||
a:com.intellij.ide.plugins.PluginReplacement
|
||||
- com.intellij.openapi.extensions.PluginAware
|
||||
- sf:EP_NAME:com.intellij.openapi.extensions.ExtensionPointName
|
||||
|
||||
Reference in New Issue
Block a user