From bc6abca8a1dbcce6c1fa036aa2fce6efa4576f4e Mon Sep 17 00:00:00 2001 From: j2blake Date: Thu, 22 Mar 2012 20:18:34 +0000 Subject: [PATCH] NIHVIVO-3300 Remove the hard-coded reference to person.thumbnail.jpg --- .../vitro/webapp/controller/accounts/UserAccountsPage.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/accounts/UserAccountsPage.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/accounts/UserAccountsPage.java index 092e9c7e9..5854cbe6c 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/accounts/UserAccountsPage.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/accounts/UserAccountsPage.java @@ -35,9 +35,6 @@ public abstract class UserAccountsPage extends AbstractPageHandler { private static final String PERSON_CLASS_URI = "http://xmlns.com/foaf/0.1/Person"; - private static final String DEFAULT_IMAGE_URL = UrlBuilder - .getUrl("/images/placeholders/person.thumbnail.jpg"); - /** * After the account is created, or the password is reset, the user has this * many days to repond to the email. @@ -109,7 +106,6 @@ public abstract class UserAccountsPage extends AbstractPageHandler { UrlBuilder.getUrl("/accounts/firstTimeExternal")); map.put("accountsAjax", UrlBuilder.getUrl("/accountsAjax")); map.put("proxyAjax", UrlBuilder.getUrl("/proxiesAjax")); - map.put("defaultImageUrl", DEFAULT_IMAGE_URL); return map; }