add @deprecated comment

This commit is contained in:
Nikolay Mikhaylov
2015-08-26 19:06:14 +03:00
parent bf91641f78
commit 976dc0445e
@@ -39,10 +39,14 @@ public abstract class LibraryPresentationProvider<P extends LibraryProperties> {
return myKind;
}
/**
* @deprecated override {@link #getIcon(LibraryProperties)}.
*/
@Deprecated
@Nullable
public Icon getIcon() {
return null;
throw new AbstractMethodError();
}
@Nullable