Skip to content

Commit

Permalink
remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
notnoop committed Jun 23, 2011
1 parent b311a20 commit 4efea97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
<version>1.6.1</version> <version>1.6.1</version>
</dependency> </dependency>

<dependency> <dependency>
<groupId>ch.qos.logback</groupId> <groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId> <artifactId>logback-classic</artifactId>
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
abstract class AbstractNotificationBuilder<A extends AbstractNotificationBuilder<A, B>, B> { abstract class AbstractNotificationBuilder<A extends AbstractNotificationBuilder<A, B>, B> {
protected List<Entry<String, String>> headers = new ArrayList<Entry<String, String>>(); protected List<Entry<String, String>> headers = new ArrayList<Entry<String, String>>();

public A messageId(String messageId) { public A messageId(String messageId) {
this.headers.add(Pair.of("X-MessageId", messageId)); this.headers.add(Pair.of("X-MessageId", messageId));
return (A)this; return (A)this;
Expand All @@ -62,6 +62,6 @@ public A callbackUri(String callbackUri) {
} }


protected abstract int deliveryValueOf(DeliveryClass delivery); protected abstract int deliveryValueOf(DeliveryClass delivery);

protected abstract B build(); protected abstract B build();
} }

0 comments on commit 4efea97

Please sign in to comment.