Author: dkulp
Date: Tue Jun 1 16:05:25 2010
New Revision: 950138
URL: http://svn.apache.org/viewvc?rev=950138&view=rev
Log:
Fix compile failure
Modified:
cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/service/model/AbstractPropertiesHolder.java
Modified:
cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/service/model/AbstractPropertiesHolder.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/service/model/AbstractPropertiesHolder.java?rev=950138&r1=950137&r2=950138&view=diff
==============================================================================
---
cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/service/model/AbstractPropertiesHolder.java
(original)
+++
cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/service/model/AbstractPropertiesHolder.java
Tue Jun 1 16:05:25 2010
@@ -42,10 +42,6 @@ public abstract class AbstractProperties
if (delegate == null) {
return;
}
- if (documentation != null) {
- delegate.setDocumentation(documentation);
- documentation = null;
- }
if (extensionAttributes != null) {
delegate.setExtensionAttributes(extensionAttributes);
extensionAttributes = null;
@@ -64,20 +60,6 @@ public abstract class AbstractProperties
}
}
- public String getDocumentation() {
- if (delegate != null) {
- return delegate.getDocumentation();
- }
- return documentation;
- }
- public void setDocumentation(String s) {
- if (delegate != null) {
- delegate.setDocumentation(s);
- } else {
- documentation = s;
- }
- }
-
public Map<String, Object> getProperties() {
if (delegate != null && delegateProperties) {
return delegate.getProperties();