Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2014-01-25 20:43:56 +0000
committerFrank Becker2014-10-30 20:41:03 +0000
commitdcdbb2290e00179f91eb07c941631fd8a3bf9d0a (patch)
tree858df5d6da333b967b1e2ec5d3f6f8a7c75b76b1 /org.eclipse.mylyn.tasks.core
parentabfaa73eca9a4744aff89cdac82057c49719f7cb (diff)
downloadorg.eclipse.mylyn.tasks-dcdbb2290e00179f91eb07c941631fd8a3bf9d0a.tar.gz
org.eclipse.mylyn.tasks-dcdbb2290e00179f91eb07c941631fd8a3bf9d0a.tar.xz
org.eclipse.mylyn.tasks-dcdbb2290e00179f91eb07c941631fd8a3bf9d0a.zip
426644: add dummy RepositoryConfiguration to the REST Client
Change-Id: Ib34339764ab981e786aa941a141143b390874d21 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=426644
Diffstat (limited to 'org.eclipse.mylyn.tasks.core')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
index 9b52c4558..253084e1e 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
@@ -584,7 +584,7 @@ public final class TaskRepository extends PlatformObject {
public void setCharacterEncoding(String characterEncoding) {
properties.put(IRepositoryConstants.PROPERTY_ENCODING, characterEncoding == null
? DEFAULT_CHARACTER_ENCODING
- : characterEncoding);
+ : characterEncoding);
}
/**
@@ -709,7 +709,7 @@ public final class TaskRepository extends PlatformObject {
public void setTimeZoneId(String timeZoneId) {
setProperty(IRepositoryConstants.PROPERTY_TIMEZONE, timeZoneId == null
? TimeZone.getDefault().getID()
- : timeZoneId);
+ : timeZoneId);
}
/**

Back to the top