mirror of https://github.com/tasks/tasks
Remove SyncContainer
parent
0a939a406d
commit
76ac572b59
@ -1,30 +0,0 @@
|
||||
/**
|
||||
* Copyright (c) 2012 Todoroo Inc
|
||||
*
|
||||
* See the file "LICENSE" for the full license governing this code.
|
||||
*/
|
||||
package com.todoroo.astrid.sync;
|
||||
|
||||
import com.todoroo.astrid.data.Metadata;
|
||||
import com.todoroo.astrid.data.Task;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Container class for transmitting tasks and including local and remote
|
||||
* metadata. Synchronization Providers can subclass this class if desired.
|
||||
*
|
||||
* @author Tim Su <tim@todoroo.com>
|
||||
*
|
||||
*/
|
||||
public class SyncContainer {
|
||||
public Task task;
|
||||
public ArrayList<Metadata> metadata;
|
||||
|
||||
/**
|
||||
* Method called when sync container is about to be saved into the database.
|
||||
*/
|
||||
public void prepareForSaving() {
|
||||
// override me necessary
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue