Login
Artifact [3ea41d892c]
Login

Artifact 3ea41d892c435668aaba3dc40fad1af962e30493:



import org.fossil_scm.libfossil.Checkout;

public class f_checkin {

	public static void main(String[] args){
		// Just create a "Checkout" object and dispose it, for now.
		// TODO: eventually this should do the same as f-checkin.c

		Checkout checkout = new Checkout(args[1], 0);
		checkout.dispose();
	}
}