You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: branches/logging-alpha/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/ResourceManager.java
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -147,8 +147,6 @@ public static ProjectListOption pageToken(String pageToken) {
147
147
*
148
148
* <p>The server can return fewer projects than requested. When there are more results than the
149
149
* page size, the server will return a page token that can be used to fetch other results.
150
-
* Note: pagination is not yet supported; the server currently ignores this field and returns
Copy file name to clipboardExpand all lines: branches/logging-alpha/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/testing/LocalResourceManagerHelper.java
+21-6Lines changed: 21 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@
34
34
importjava.util.Map;
35
35
importjava.util.Random;
36
36
importjava.util.Set;
37
-
importjava.util.concurrent.ConcurrentHashMap;
37
+
importjava.util.concurrent.ConcurrentSkipListMap;
38
38
importjava.util.logging.Level;
39
39
importjava.util.logging.Logger;
40
40
importjava.util.zip.GZIPInputStream;
@@ -71,7 +71,7 @@ public class LocalResourceManagerHelper {
Copy file name to clipboardExpand all lines: branches/logging-alpha/gcloud-java-resourcemanager/src/test/java/com/google/gcloud/resourcemanager/LocalResourceManagerHelperTest.java
+23-3Lines changed: 23 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
importorg.junit.Test;
20
20
21
21
importjava.util.HashMap;
22
+
importjava.util.Iterator;
22
23
importjava.util.Map;
23
24
24
25
publicclassLocalResourceManagerHelperTest {
@@ -278,7 +279,7 @@ public void testGetWithOptions() {
Copy file name to clipboardExpand all lines: branches/logging-alpha/gcloud-java-resourcemanager/src/test/java/com/google/gcloud/resourcemanager/ResourceManagerImplTest.java
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@
42
42
importorg.junit.Test;
43
43
importorg.junit.rules.ExpectedException;
44
44
45
+
importjava.util.Iterator;
45
46
importjava.util.Map;
46
47
47
48
publicclassResourceManagerImplTest {
@@ -166,7 +167,7 @@ public void testGetWithOptions() {
166
167
@Test
167
168
publicvoidtestList() {
168
169
Page<Project> projects = RESOURCE_MANAGER.list();
169
-
assertFalse(projects.values().iterator().hasNext());// TODO: change this when #421 is resolved
0 commit comments