Remove Guava from GWT build
This is the only reference to Guava code in the GWT UI build. Convert back to normal Java usage so Guava is not required as a dependency for the UI build. Change-Id: I7689cb1ee97ca855f29d76f25d9e5f8a34a8bd88
This commit is contained in:
		| @@ -14,16 +14,16 @@ | |||||||
|  |  | ||||||
| package com.google.gerrit.common.data; | package com.google.gerrit.common.data; | ||||||
|  |  | ||||||
| import com.google.common.collect.Lists; |  | ||||||
| import com.google.gerrit.reviewdb.client.Project; | import com.google.gerrit.reviewdb.client.Project; | ||||||
|  |  | ||||||
|  | import java.util.ArrayList; | ||||||
| import java.util.List; | import java.util.List; | ||||||
|  |  | ||||||
| public class GarbageCollectionResult { | public class GarbageCollectionResult { | ||||||
|   protected List<Error> errors; |   protected List<Error> errors; | ||||||
|  |  | ||||||
|   public GarbageCollectionResult() { |   public GarbageCollectionResult() { | ||||||
|     errors = Lists.newArrayList(); |     errors = new ArrayList<Error>(); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   public void addError(Error e) { |   public void addError(Error e) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Shawn Pearce
					Shawn Pearce