WW-4711 Disables searching stack by default

This commit is contained in:
Lukasz Lenart
2016-11-12 09:41:05 +01:00
parent a5817fecb3
commit a5092a24f2
@@ -49,7 +49,7 @@ public class TextProviderHelper {
* @return the message if found, otherwise the defaultMessage
*/
public static String getText(String key, String defaultMessage, List<Object> args, ValueStack stack) {
return getText(key, defaultMessage, args, stack, true);
return getText(key, defaultMessage, args, stack, false);
}
/**