Still some old Serializable stuff to remove.
git-svn-id: http://google-refine.googlecode.com/svn/trunk@228 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
80e6111a92
commit
3388c3e09f
@ -6,7 +6,6 @@ import java.io.FileOutputStream;
|
|||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.io.LineNumberReader;
|
import java.io.LineNumberReader;
|
||||||
import java.io.OutputStreamWriter;
|
import java.io.OutputStreamWriter;
|
||||||
import java.io.Serializable;
|
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
@ -25,9 +24,7 @@ import com.metaweb.gridworks.model.Project;
|
|||||||
import com.metaweb.gridworks.operations.OperationRegistry;
|
import com.metaweb.gridworks.operations.OperationRegistry;
|
||||||
import com.metaweb.gridworks.util.ParsingUtilities;
|
import com.metaweb.gridworks.util.ParsingUtilities;
|
||||||
|
|
||||||
public class HistoryEntry implements Serializable, Jsonizable {
|
public class HistoryEntry implements Jsonizable {
|
||||||
private static final long serialVersionUID = 532766467813930262L;
|
|
||||||
|
|
||||||
final public long id;
|
final public long id;
|
||||||
final public long projectID;
|
final public long projectID;
|
||||||
final public String description;
|
final public String description;
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
package com.metaweb.gridworks.model;
|
package com.metaweb.gridworks.model;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.ObjectInputStream;
|
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -74,11 +72,6 @@ public class ColumnGroup implements Jsonizable {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
|
|
||||||
in.defaultReadObject();
|
|
||||||
internalInitialize();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void internalInitialize() {
|
protected void internalInitialize() {
|
||||||
subgroups = new LinkedList<ColumnGroup>();
|
subgroups = new LinkedList<ColumnGroup>();
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
package com.metaweb.gridworks.model.changes;
|
package com.metaweb.gridworks.model.changes;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.Serializable;
|
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
|
|
||||||
import com.metaweb.gridworks.model.Cell;
|
import com.metaweb.gridworks.model.Cell;
|
||||||
|
|
||||||
public class CellAtRow {
|
public class CellAtRow {
|
||||||
private static final long serialVersionUID = 7280920621006690944L;
|
|
||||||
|
|
||||||
final public int row;
|
final public int row;
|
||||||
final public Cell cell;
|
final public Cell cell;
|
||||||
|
Loading…
Reference in New Issue
Block a user