[CONF] Confluence Changes in the last 24 hours
This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache ActiveMQ (https://cwiki.apache.org/confluence/display/ACTIVEMQ) Pages - Pure Master Slave edited by tmielke (08:48 AM) https://cwiki.apache.org/confluence/display/ACTIVEMQ/Pure+Master+Slave Apache Camel (https://cwiki.apache.org/confluence/display/CAMEL) Pages - Camel 2.12.0 Release edited by bvahdat (04:09 PM) https://cwiki.apache.org/confluence/display/CAMEL/Camel+2.12.0+Release Tracer edited by davsclaus (08:26 AM) https://cwiki.apache.org/confluence/display/CAMEL/Tracer Apache Cloudstack (https://cwiki.apache.org/confluence/display/CLOUDSTACK) Pages - Data Access Layer edited by prachidamle (08:00 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Data+Access+Layer Setting Up a CloudStack Development Environment on Mac OS X edited by digitalsanctum (03:19 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Setting+Up+a+CloudStack+Development+Environment+on+Mac+OS+X Storage XenMotion Test Execution report created by talluri (01:42 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Storage+XenMotion+Test+Execution+report Multiple IPs Per Nic Test Execution edited by swamy (11:32 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Multiple+IPs+Per+Nic+Test+Execution EIP Enhancements edited by murali.reddy (08:17 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/EIP+Enhancements Cisco ASA 1000v Test Execution Results edited by sailajam (02:13 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Cisco+ASA+1000v+Test+Execution+Results Apache CXF (https://cwiki.apache.org/confluence/display/CXF) Pages - Coding Guidelines edited by christian schneider (03:57 AM) https://cwiki.apache.org/confluence/display/CXF/Coding+Guidelines Apache CXF Documentation (https://cwiki.apache.org/confluence/display/CXF20DOC) Pages - 3.0 Migration Guide edited by dkulp (12:18 PM) https://cwiki.apache.org/confluence/display/CXF20DOC/3.0+Migration+Guide FALCON (https://cwiki.apache.org/confluence/display/FALCON) Pages - Index created by ke4qqq (01:01 PM) https://cwiki.apache.org/confluence/display/FALCON/Index Apache Flex (https://cwiki.apache.org/confluence/display/FLEX) Pages - Release Guide for the SDK edited by e...@ixsoftware.nl (07:51 AM) https://cwiki.apache.org/confluence/display/FLEX/Release+Guide+for+the+SDK KNOX (https://cwiki.apache.org/confluence/display/KNOX) Pages - Secure MapReduce2 (YARN) created by kminder (08:26 AM) https://cwiki.apache.org/confluence/display/KNOX/Secure+MapReduce2+%28YARN%29 Apache OpenOffice Community (https://cwiki.apache.org/confluence/display/OOOUSERS) Pages - Development Snapshot Builds edited by jsc (09:09 AM) https://cwiki.apache.org/confluence/display/OOOUSERS/Development+Snapshot+Builds Ripple (https://cwiki.apache.org/confluence/display/RIPPLE) Pages - Index created by ke4qqq (03:58 PM) https://cwiki.apache.org/confluence/display/RIPPLE/Index Apache Struts 2 Documentation (https://cwiki.apache.org/confluence/display/WW) Pages - OSGi Plugin edited by lukaszlenart (10:15 AM) https://cwiki.apache.org/confluence/display/WW/OSGi+Plugin Change your notification preferences: https://cwiki.apache.org/confluence/users/viewnotifications.action
svn commit: r1485066 - /struts/struts2/trunk/plugins/osgi/src/main/java/org/apache/struts2/osgi/OsgiConfigurationProvider.java
Author: lukaszlenart Date: Wed May 22 05:20:45 2013 New Revision: 1485066 URL: http://svn.apache.org/r1485066 Log: WW-3958 Reverts cast to String to satisfy JDK7 Modified: struts/struts2/trunk/plugins/osgi/src/main/java/org/apache/struts2/osgi/OsgiConfigurationProvider.java Modified: struts/struts2/trunk/plugins/osgi/src/main/java/org/apache/struts2/osgi/OsgiConfigurationProvider.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/osgi/src/main/java/org/apache/struts2/osgi/OsgiConfigurationProvider.java?rev=1485066&r1=1485065&r2=1485066&view=diff == --- struts/struts2/trunk/plugins/osgi/src/main/java/org/apache/struts2/osgi/OsgiConfigurationProvider.java (original) +++ struts/struts2/trunk/plugins/osgi/src/main/java/org/apache/struts2/osgi/OsgiConfigurationProvider.java Wed May 22 05:20:45 2013 @@ -177,7 +177,8 @@ public class OsgiConfigurationProvider i * Checks for "Struts2-Enabled" header in the bundle */ protected boolean shouldProcessBundle(Bundle bundle) { -String strutsEnabled = bundle.getHeaders().get(OsgiHost.OSGI_HEADER_STRUTS_ENABLED); +// Cast to String is required on JDK7 +String strutsEnabled = (String) bundle.getHeaders().get(OsgiHost.OSGI_HEADER_STRUTS_ENABLED); return "true".equalsIgnoreCase(strutsEnabled); }