bug 375933: API Problem in TeamUI#getPages(..)
diff --git a/bundles/org.eclipse.team.core/.settings/.api_filters b/bundles/org.eclipse.team.core/.settings/.api_filters
new file mode 100644
index 0000000..2562537
--- /dev/null
+++ b/bundles/org.eclipse.team.core/.settings/.api_filters
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?><component id="org.eclipse.team.core" version="2">

+    <resource path="src/org/eclipse/team/core/Team.java" type="org.eclipse.team.core.Team">

+        <filter id="338944126">

+            <message_arguments>

+                <message_argument value="org.eclipse.team.core.Team"/>

+                <message_argument value="getBundleImporters()"/>

+            </message_arguments>

+        </filter>

+    </resource>

+</component>
\ No newline at end of file
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java
index 8d9e121..140ab94 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2011 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 IBM Corporation 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
@@ -590,6 +590,7 @@
 	 * 
 	 * @return IBundleImporter[] returns the available bundle importers
 	 * @since 3.6
+	 * @noreference This method is not intended to be referenced by clients.
 	 */
 	public synchronized static IBundleImporter[] getBundleImporters() {
 		if (fBundleImporters == null) {
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java
index f8c558b..cfc4635 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java
@@ -158,6 +158,7 @@
 	 * @throws CoreException
 	 *             if an error occurs while trying to create a page extension
 	 * @since 3.6
+	 * @noreference This method is not intended to be referenced by clients.
 	 */
 	public static IScmUrlImportWizardPage[] getPages(final String importerId)
 			throws CoreException {