[platform] API: mark for removal deprecated API without usages (IJPL-275)

GitOrigin-RevId: 1675b300f41a37b7b3ea0e2b7a1758a1aae296eb
This commit is contained in:
Nikolay Chashnikov
2024-02-16 14:25:47 +01:00
committed by intellij-monorepo-bot
parent 22dabc6260
commit 9d5299c0aa
51 changed files with 74 additions and 36 deletions

View File

@@ -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;