Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,6 @@ public void afterPropertiesSet() throws Exception {
public void destroy() {
// do nothing
}


}
Original file line number Diff line number Diff line change
Expand Up @@ -352,4 +352,5 @@ protected Class getServiceClass(T ref) {
public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) {
this.applicationEventPublisher = applicationEventPublisher;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ private static BeanDefinition parse(Element element, ParserContext parserContext
try {
getter = beanClass.getMethod("is" + name.substring(3), new Class<?>[0]);
} catch (NoSuchMethodException e2) {
logger.error("Method " + name + " parse error, cause: " + e2.getMessage(), e2);
}
}
if (getter == null
Expand Down
1 change: 1 addition & 0 deletions dubbo-serialization/dubbo-serialization-avro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
Expand Down