From 784137fdaca63978055a6f12f732fabec97b3b04 Mon Sep 17 00:00:00 2001 From: bao-qian Date: Tue, 3 May 2016 00:04:04 +0100 Subject: [PATCH] Misc --- Wox.Plugin/Feature.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox.Plugin/Feature.cs b/Wox.Plugin/Feature.cs index 2b21a336b2..472149d4f7 100644 --- a/Wox.Plugin/Feature.cs +++ b/Wox.Plugin/Feature.cs @@ -21,9 +21,9 @@ namespace Wox.Plugin /// Represent plugin query will be executed in UI thread directly. Don't do long-running operation in Query method if you implement this interface /// This will improve the performance of instant search like websearch or cmd plugin /// + [Obsolete("Wox is fast enough now, executed on ui thread is no longer needed")] public interface IInstantQuery : IFeatures { - [Obsolete("Empty interface is enough. it will be removed in v1.3.0 and possibly replaced by attribute")] bool IsInstantQuery(string query); }