File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
spring-context/src/main/java/org/springframework/context Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2012 the original author or authors.
2
+ * Copyright 2002-2015 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -36,7 +36,7 @@ public abstract class ApplicationEvent extends EventObject {
36
36
37
37
/**
38
38
* Create a new ApplicationEvent.
39
- * @param source the component that published the event (never {@code null})
39
+ * @param source the object on which the event initially occurred (never {@code null})
40
40
*/
41
41
public ApplicationEvent (Object source ) {
42
42
super (source );
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ public class PayloadApplicationEvent<T> extends ApplicationEvent {
35
35
36
36
/**
37
37
* Create a new PayloadApplicationEvent.
38
- * @param source the component that published the event (never {@code null})
39
- * @param payload the payload object
38
+ * @param source the object on which the event initially occurred (never {@code null})
39
+ * @param payload the payload object (never {@code null})
40
40
*/
41
41
public PayloadApplicationEvent (Object source , T payload ) {
42
42
super (source );
You can’t perform that action at this time.
0 commit comments