diff options
author | mkersten | 2008-09-12 04:21:37 +0000 |
---|---|---|
committer | mkersten | 2008-09-12 04:21:37 +0000 |
commit | 6f51c0e1fadec73f985b4cfe825c3c4811f34f28 (patch) | |
tree | a7e911fe1a18cb652b13d59ce4ba434f6bdc4e60 /org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/internal | |
parent | a79c752ed03fa3e01bf680bbfd72efe9622dd2eb (diff) | |
download | org.eclipse.mylyn.tasks-6f51c0e1fadec73f985b4cfe825c3c4811f34f28.tar.gz org.eclipse.mylyn.tasks-6f51c0e1fadec73f985b4cfe825c3c4811f34f28.tar.xz org.eclipse.mylyn.tasks-6f51c0e1fadec73f985b4cfe825c3c4811f34f28.zip |
NEW - bug 194157: update copyright notices to 2008
https://bugs.eclipse.org/bugs/show_bug.cgi?id=194157
Diffstat (limited to 'org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/internal')
-rw-r--r-- | org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/internal/trac/ui/TracHyperlinkUtilStandaloneTest.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/internal/trac/ui/TracHyperlinkUtilStandaloneTest.java b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/internal/trac/ui/TracHyperlinkUtilStandaloneTest.java index 5da93d304..8831a6a24 100644 --- a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/internal/trac/ui/TracHyperlinkUtilStandaloneTest.java +++ b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/internal/trac/ui/TracHyperlinkUtilStandaloneTest.java @@ -1,9 +1,12 @@ /******************************************************************************* - * Copyright (c) 2004, 2007 Mylyn project committers and others. +* Copyright (c) 2004, 2008 Tasktop Technologies and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * David Green - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.internal.trac.ui; @@ -16,7 +19,7 @@ import junit.framework.TestCase; * @author David Green */ public class TracHyperlinkUtilStandaloneTest extends TestCase { - + public void testWikiPattern2SinglePositiveMatch() { Matcher matcher = TracHyperlinkUtil.wikiPattern2.matcher("a HyperLink there"); assertTrue(matcher.find()); @@ -58,5 +61,5 @@ public class TracHyperlinkUtilStandaloneTest extends TestCase { assertEquals(matcher.group(0), "ThereIsAnother"); assertFalse(matcher.find()); } - + } |