Login
f_checkin.java at [39121d2e23]
Login

File f-apps/f_checkin.java artifact 3ea41d892c part of check-in 39121d2e23



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();
	}
}