diff --git a/platform/platform-api/src/com/intellij/ide/ui/search/OptionDescription.java b/platform/platform-api/src/com/intellij/ide/ui/search/OptionDescription.java index e8511e1387c18..582880bd80ba7 100644 --- a/platform/platform-api/src/com/intellij/ide/ui/search/OptionDescription.java +++ b/platform/platform-api/src/com/intellij/ide/ui/search/OptionDescription.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2015 JetBrains s.r.o. + * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -74,6 +74,18 @@ public String getGroupName() { return myGroupName; } + public String getValue() { + return null; + } + + public boolean hasExternalEditor() { + return false; + } + + public void invokeInternalEditor() { + + } + public String toString() { return myHit; }