Skip to content

Commit ee3d650

Browse files
committed
---
yaml --- r: 3629 b: refs/heads/pubsub-alpha c: 992a371 h: refs/heads/master i: 3627: 2c8d6e4
1 parent a7a9903 commit ee3d650

20 files changed

Lines changed: 39 additions & 1161 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 36a62ef856d199f8efd09501b5ba65c422c01f23
33
refs/heads/travis: e21ee7b88a5edc3f3d8c71f90c3fc32abf7e8dd6
44
refs/heads/gh-pages: 7406918e071dd2c5677a638ae2a06e7592b6542c
5-
refs/heads/pubsub-alpha: f4d3b95108fed2c3902415d4f70c38689bad45b0
5+
refs/heads/pubsub-alpha: 992a371006c8e723137b57933b72824754e98869
66
refs/heads/update-datastore: 47aae517c2cb33f1dccd909adaced73ec9d0f4df
77
refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444
88
refs/tags/v0.0.10: 207ebd2a3472fddee69fe1298eb90429e3306efd

branches/pubsub-alpha/gcloud-java-bigquery/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
<version>v2-rev270-1.21.0</version>
3434
<scope>compile</scope>
3535
<exclusions>
36-
<exclusion>
37-
<groupId>com.google.guava</groupId>
38-
<artifactId>guava-jdk5</artifactId>
39-
</exclusion>
36+
<exclusion>
37+
<groupId>com.google.guava</groupId>
38+
<artifactId>guava-jdk5</artifactId>
39+
</exclusion>
4040
</exclusions>
4141
</dependency>
4242
<dependency>

branches/pubsub-alpha/gcloud-java-core/src/main/java/com/google/gcloud/BaseWriteChannel.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import java.io.IOException;
2222
import java.io.Serializable;
2323
import java.nio.ByteBuffer;
24-
import java.nio.channels.ClosedChannelException;
2524
import java.util.Arrays;
2625
import java.util.Objects;
2726

@@ -115,9 +114,9 @@ private void flush() {
115114
}
116115
}
117116

118-
private void validateOpen() throws ClosedChannelException {
117+
private void validateOpen() throws IOException {
119118
if (!isOpen) {
120-
throw new ClosedChannelException();
119+
throw new IOException("stream is closed");
121120
}
122121
}
123122

branches/pubsub-alpha/gcloud-java-core/src/main/java/com/google/gcloud/IamPolicy.java

Lines changed: 0 additions & 256 deletions
This file was deleted.

0 commit comments

Comments
 (0)