1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | package Torello.Java.Build;
/**
* Under Development. Will (one day, over the rainbow) utilize the "RClone Utility" to
* synchronize Java-Doc {@code '.html'} Web-Pages, Java {@code '.jar'} Files, etc.. to a
* public Web-Domain Storage-Bucket.
*/
public abstract class CloudSyncRClone extends CloudSync
{
private CloudSyncRClone()
{
// required: boolean,boolean,boolean,boolean,String,String
// found: no arguments
// reason: actual and formal argument lists differ in length
super(false, false, false, false, null, null);
throw new Torello.Java.ToDoException();
}
}
|