Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2014-04-10 08:26:43 +0000
committerTomasz Zarna2014-04-11 09:16:48 +0000
commit3f924e624cf89f1df4c3418283a4677d94ae4421 (patch)
tree24a78965af6d63cab7caf82dcd0a61ef79b26302
parent91f8c328eb73c8b4ac9ccaea28ce0a86f62dc246 (diff)
downloadorg.eclipse.mylyn.commons-3f924e624cf89f1df4c3418283a4677d94ae4421.tar.gz
org.eclipse.mylyn.commons-3f924e624cf89f1df4c3418283a4677d94ae4421.tar.xz
org.eclipse.mylyn.commons-3f924e624cf89f1df4c3418283a4677d94ae4421.zip
remove commented out code from PersonLabelProvider
Change-Id: I90771e30ef97bc4dbce1d438ca858f66e83c3578 Signed-off-by: Tomasz Zarna <tomasz.zarna@tasktop.com>
-rw-r--r--org.eclipse.mylyn.commons.identity.ui/src/org/eclipse/mylyn/internal/commons/identity/ui/PersonLabelProvider.java4
1 files changed, 0 insertions, 4 deletions
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 88e774d3..9f8340ad 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
@@ -68,10 +68,6 @@ 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;
}
return null;
}

Back to the top