Skip to content

Commit

Permalink
Make ExternalPackage serializable.
Browse files Browse the repository at this point in the history
--
MOS_MIGRATED_REVID=88764263
  • Loading branch information
haxorz authored and kchodorow committed Mar 18, 2015
1 parent e6679f0 commit 934e452
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import com.google.devtools.build.lib.syntax.Label.SyntaxException;
import com.google.devtools.build.lib.vfs.Path;

import java.io.Serializable;
import java.util.Map;
import java.util.Map.Entry;

Expand Down Expand Up @@ -71,7 +72,7 @@ public static boolean isExternal(Package pkg) {
/**
* Holder for a binding's actual label and location.
*/
public static class Binding {
public static class Binding implements Serializable {
private final Label actual;
private final Location location;

Expand Down

0 comments on commit 934e452

Please sign in to comment.