aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/eventbus/DeadEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/eventbus/DeadEvent.java')
-rw-r--r--guava/src/com/google/common/eventbus/DeadEvent.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/guava/src/com/google/common/eventbus/DeadEvent.java b/guava/src/com/google/common/eventbus/DeadEvent.java
index 03b4a2e..8265d5a 100644
--- a/guava/src/com/google/common/eventbus/DeadEvent.java
+++ b/guava/src/com/google/common/eventbus/DeadEvent.java
@@ -16,8 +16,6 @@
package com.google.common.eventbus;
-import static com.google.common.base.Preconditions.checkNotNull;
-
import com.google.common.annotations.Beta;
/**
@@ -44,8 +42,8 @@ public class DeadEvent {
* @param event the event that could not be delivered.
*/
public DeadEvent(Object source, Object event) {
- this.source = checkNotNull(source);
- this.event = checkNotNull(event);
+ this.source = source;
+ this.event = event;
}
/**