[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Tuscany Wiki (TUSCANYWIKI) http://cwiki.apache.org/confluence/display/TUSCANYWIKI | |-Pages Added or Edited in This Space |-- RAT Report was last edited by [EMAIL PROTECTED] (03:01 AM). | http://cwiki.apache.org/confluence/display/TUSCANYWIKI/RAT+Report Apache Struts 2 Documentation (WW) http://cwiki.apache.org/confluence/display/WW | |-Pages Added or Edited in This Space |-- Type Conversion was last edited by [EMAIL PROTECTED] (05:59 PM). | http://cwiki.apache.org/confluence/display/WW/Type+Conversion |-- Does MyEclipse 6 support Struts 2? was created by husted (04:56 AM). | http://cwiki.apache.org/confluence/pages/viewpage.action?pageId=75019 | |-New Comments in This Space |-- http://cwiki.apache.org/confluence/display/WW/How+do+we+get+invalidate+the+session (1) Apache Lucene Mahout (MAHOUT) http://cwiki.apache.org/confluence/display/MAHOUT | |-Pages Added or Edited in This Space |-- TODO was created by gsingers (07:17 PM). | http://cwiki.apache.org/confluence/display/MAHOUT/TODO |-- index was last edited by gsingers (07:18 PM). | http://cwiki.apache.org/confluence/display/MAHOUT/index Apache Geronimo v2.1 (GMOxDOC21) http://cwiki.apache.org/confluence/display/GMOxDOC21 | |-Pages Added or Edited in This Space |-- Monitoring was last edited by ginemesis (07:31 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Monitoring |-- Geronimo Architecture was created by hcunico (06:33 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Geronimo+Architecture Apache Ode (ODExSITE) http://cwiki.apache.org/confluence/display/ODExSITE | |-Pages Added or Edited in This Space |-- Contributors was last edited by mriou (03:09 PM). | http://cwiki.apache.org/confluence/display/ODExSITE/Contributors Apache Wicket (WICKET) http://cwiki.apache.org/confluence/display/WICKET | |-Pages Added or Edited in This Space |-- URL Coding Stratagies was created by [EMAIL PROTECTED] (10:34 AM). | http://cwiki.apache.org/confluence/display/WICKET/URL+Coding+Stratagies - Updated User Profiles: - noun_mahout |- http://cwiki.apache.org/confluence/display/~noun_mahout - CONFLUENCE INFORMATION This message is automatically generated by Confluence Unsubscribe or edit your notifications preferences http://cwiki.apache.org/confluence/users/viewnotifications.action If you think it was sent incorrectly contact one of the administrators http://cwiki.apache.org/confluence/administrators.action If you want more information on Confluence, or have a bug to report see http://www.atlassian.com/software/confluence
svn commit: r615436 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/FileUploadInterceptor.java
Author: nilsga Date: Sat Jan 26 00:53:12 2008 New Revision: 615436 URL: http://svn.apache.org/viewvc?rev=615436&view=rev Log: WW-2240 Temporary workaround for NPE problems when doing info logging. Patch by Benjamin McCann Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/FileUploadInterceptor.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/FileUploadInterceptor.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/FileUploadInterceptor.java?rev=615436&r1=615435&r2=615436&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/FileUploadInterceptor.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/FileUploadInterceptor.java Sat Jan 26 00:53:12 2008 @@ -274,8 +274,9 @@ File[] file = multiWrapper.getFiles(inputValue); for (int index = 0; index < file.length; index++) { File currentFile = file[index]; -LOG.info(getTextMessage("struts.messages.removing.file", new Object[]{inputValue, currentFile}, ActionContext.getContext().getLocale())); - +if(LOG.isInfoEnabled()) { + LOG.info(getTextMessage("struts.messages.removing.file", new Object[]{inputValue, currentFile}, ActionContext.getContext().getLocale())); +} if ((currentFile != null) && currentFile.isFile()) { currentFile.delete(); }