mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
[platform] API: mark for removal deprecated API without usages (IJPL-275)
GitOrigin-RevId: 1675b300f41a37b7b3ea0e2b7a1758a1aae296eb
This commit is contained in:
committed by
intellij-monorepo-bot
parent
22dabc6260
commit
9d5299c0aa
@@ -1,6 +1,7 @@
|
||||
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
package com.intellij.reference;
|
||||
|
||||
import org.jetbrains.annotations.ApiStatus;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.lang.ref.Reference;
|
||||
@@ -29,6 +30,7 @@ public class SoftReference<T> extends java.lang.ref.SoftReference<T> implements
|
||||
* @deprecated use {@link java.lang.ref.SoftReference#SoftReference(Object, ReferenceQueue)}
|
||||
*/
|
||||
@Deprecated
|
||||
@ApiStatus.ScheduledForRemoval
|
||||
public SoftReference(final T referent, final ReferenceQueue<? super T> q) {
|
||||
super(referent, q);
|
||||
//myReferent = referent;
|
||||
|
||||
Reference in New Issue
Block a user