Merge "[findBugs] Implement Serializable interface in PlotLane"

This commit is contained in:
Shawn Pearce 2011-12-08 13:06:03 -05:00 committed by Code Review
commit 4c24203e77
1 changed files with 5 additions and 1 deletions

View File

@ -43,12 +43,16 @@
package org.eclipse.jgit.revplot; package org.eclipse.jgit.revplot;
import java.io.Serializable;
/** /**
* A line space within the graph. * A line space within the graph.
* <p> * <p>
* Commits are strung onto a lane. For many UIs a lane represents a column. * Commits are strung onto a lane. For many UIs a lane represents a column.
*/ */
public class PlotLane { public class PlotLane implements Serializable {
private static final long serialVersionUID = 1L;
int position; int position;
/** /**