| author | Steffen Pingel | 2012-03-16 05:06:48 (EDT) |
|---|---|---|
| committer | Steffen Pingel | 2012-03-16 05:06:48 (EDT) |
| commit | 104937f1658d7e7a874eec8dc4046ce379b3ed33 (patch) (side-by-side diff) | |
| tree | ed3657d7e225ae13395d08c451ca37c4e95aff00 | |
| parent | a36041b0f70e63e25f5cbee64866fa834259ea5d (diff) | |
| download | org.eclipse.mylyn.commons-104937f1658d7e7a874eec8dc4046ce379b3ed33.zip org.eclipse.mylyn.commons-104937f1658d7e7a874eec8dc4046ce379b3ed33.tar.gz org.eclipse.mylyn.commons-104937f1658d7e7a874eec8dc4046ce379b3ed33.tar.bz2 | |
Remove dependency on tasks.ui
Change-Id: Ib6e3da0146a34a13778c3bce6320a9ec5351aa27
| -rw-r--r-- | org.eclipse.mylyn.commons.identity.ui/META-INF/MANIFEST.MF | 3 | ||||
| -rw-r--r-- | org.eclipse.mylyn.commons.identity.ui/src/org/eclipse/mylyn/internal/commons/identity/ui/PersonLabelProvider.java | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/org.eclipse.mylyn.commons.identity.ui/META-INF/MANIFEST.MF b/org.eclipse.mylyn.commons.identity.ui/META-INF/MANIFEST.MF index 31279cb..6641ef7 100644 --- a/org.eclipse.mylyn.commons.identity.ui/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.commons.identity.ui/META-INF/MANIFEST.MF @@ -13,8 +13,7 @@ Require-Bundle: org.eclipse.ui, org.eclipse.ui.navigator.resources, org.eclipse.mylyn.commons.identity.core, org.eclipse.mylyn.commons.ui, - org.eclipse.mylyn.commons.workbench, - org.eclipse.mylyn.tasks.ui + org.eclipse.mylyn.commons.workbench Bundle-RequiredExecutionEnvironment: J2SE-1.5 Bundle-ActivationPolicy: lazy Export-Package: org.eclipse.mylyn.internal.commons.identity.ui;x-internal:=true diff --git a/org.eclipse.mylyn.commons.identity.ui/src/org/eclipse/mylyn/internal/commons/identity/ui/PersonLabelProvider.java b/org.eclipse.mylyn.commons.identity.ui/src/org/eclipse/mylyn/internal/commons/identity/ui/PersonLabelProvider.java index 85eb823..88e774d 100644 --- a/org.eclipse.mylyn.commons.identity.ui/src/org/eclipse/mylyn/internal/commons/identity/ui/PersonLabelProvider.java +++ b/org.eclipse.mylyn.commons.identity.ui/src/org/eclipse/mylyn/internal/commons/identity/ui/PersonLabelProvider.java @@ -22,7 +22,6 @@ import org.eclipse.mylyn.commons.identity.core.Account; import org.eclipse.mylyn.commons.identity.core.IIdentity; import org.eclipse.mylyn.commons.identity.core.IProfile; import org.eclipse.mylyn.commons.identity.core.IProfileImage; -import org.eclipse.mylyn.internal.tasks.ui.TasksUiPlugin; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.ImageData; import org.eclipse.ui.ISharedImages; @@ -71,8 +70,8 @@ public class PersonLabelProvider extends LabelProvider { return image; } else if (object instanceof Account) { Account account = (Account) object; - Image image = TasksUiPlugin.getDefault().getBrandingIcon(account.getKind()); - return image; +// Image image = TasksUiPlugin.getDefault().getBrandingIcon(account.getKind()); +// return image; } return null; } |

