Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Muskalla2012-09-06 09:23:02 +0000
committerSteffen Pingel2012-09-10 20:05:31 +0000
commitd5bd686b534daef740e136c8ec652ebc86c8c00c (patch)
tree4a3c1b35d9e9c1f176c95746da5c2364fecbb4d9 /org.eclipse.mylyn.tasks.tests
parent2d49eec5ec62ff293744ed90aff1cd6c978e0a1b (diff)
downloadorg.eclipse.mylyn.tasks-d5bd686b534daef740e136c8ec652ebc86c8c00c.tar.gz
org.eclipse.mylyn.tasks-d5bd686b534daef740e136c8ec652ebc86c8c00c.tar.xz
org.eclipse.mylyn.tasks-d5bd686b534daef740e136c8ec652ebc86c8c00c.zip
NEW - bug 388222: RepositoryClientManager fails to deserialize configs
with arrays https://bugs.eclipse.org/bugs/show_bug.cgi?id=388222 Change-Id: Ie3ddf0439a231d1b93a1687dfd2f9a8ae3fb7039
Diffstat (limited to 'org.eclipse.mylyn.tasks.tests')
-rw-r--r--org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/core/RepositoryClientManagerTest.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/core/RepositoryClientManagerTest.java b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/core/RepositoryClientManagerTest.java
index fc78c13a2..cd1fbb77a 100644
--- a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/core/RepositoryClientManagerTest.java
+++ b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/core/RepositoryClientManagerTest.java
@@ -30,8 +30,13 @@ public class RepositoryClientManagerTest extends TestCase {
public String someString = "mylyn";
+ public ConfigSubObject[] anArray = new ConfigSubObject[] { new ConfigSubObject() };
+
public TaskRepository repository = null;
+ }
+ public static class ConfigSubObject implements Serializable {
+ private static final long serialVersionUID = -8730054324154087433L;
}
private class MockRepositoryClientManager extends RepositoryClientManager<Object, MyConfig> {

Back to the top