XmlExtension.getAttributeValuePresentation: add missing @Deprecated

GitOrigin-RevId: 0baad0089f687cc821e7ad62b8661cf6e75ef08a
This commit is contained in:
Yann Cébron
2019-09-11 16:46:09 +02:00
committed by intellij-monorepo-bot
parent eb29449a80
commit f02b7238cb

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2018 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-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.
package com.intellij.xml;
import com.intellij.codeInsight.daemon.impl.HighlightInfoType;
@@ -157,8 +157,9 @@ public abstract class XmlExtension {
return descriptor.isRequired();
}
@SuppressWarnings("unused") //for binary compatibility
@SuppressWarnings("unused")
@ApiStatus.ScheduledForRemoval(inVersion = "2019.3")
@Deprecated
public AttributeValuePresentation getAttributeValuePresentation(@Nullable XmlAttributeDescriptor descriptor,
@NotNull String defaultAttributeQuote,
@NotNull PsiElement context) {