From 679b66159422da8d1042fd104ecdd0c5dae523c1 Mon Sep 17 00:00:00 2001 From: Mikhail Golubev Date: Wed, 11 Nov 2015 17:45:11 +0300 Subject: [PATCH] Fix typo in error message shown when time-tracking is not available in YouTrack --- .../src/com/intellij/tasks/youtrack/YouTrackRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tasks/tasks-core/src/com/intellij/tasks/youtrack/YouTrackRepository.java b/plugins/tasks/tasks-core/src/com/intellij/tasks/youtrack/YouTrackRepository.java index c67fa6834368..992c96809dc0 100644 --- a/plugins/tasks/tasks-core/src/com/intellij/tasks/youtrack/YouTrackRepository.java +++ b/plugins/tasks/tasks-core/src/com/intellij/tasks/youtrack/YouTrackRepository.java @@ -372,7 +372,7 @@ public class YouTrackRepository extends BaseRepositoryImpl { Element element = new SAXBuilder(false).build(stream).getRootElement(); final boolean timeTrackingAvailable = element.getName().equals("version") && VersionComparatorUtil.compare(element.getChildText("version"), "4.1") >= 0; if (!timeTrackingAvailable) { - throw new Exception("This version of Youtrack the time tracking is not supported"); + throw new Exception("Time tracking is not supported in this version of Youtrack"); } } finally { -- 2.32.0