diff options
author | Richard Jones <rjones@centos5x32.home.annexia.org> | 2009-07-07 16:55:51 +0100 |
---|---|---|
committer | Richard Jones <rjones@centos5x32.home.annexia.org> | 2009-07-07 16:55:51 +0100 |
commit | 157035503b509385084cafac8e5c5fa0afa2fef7 (patch) | |
tree | 8da2a2ca8e6c51afe1eb0adb40befedefe9676b8 /java/com/redhat/et/libguestfs/IntBool.java | |
parent | 6fb57e430c8daa06d8d938ac02a104c8aadbbda5 (diff) | |
parent | d5532e9ad29b28c2b323ad0abe4e0caa6e03f675 (diff) | |
download | libguestfs-157035503b509385084cafac8e5c5fa0afa2fef7.tar.gz libguestfs-157035503b509385084cafac8e5c5fa0afa2fef7.tar.xz libguestfs-157035503b509385084cafac8e5c5fa0afa2fef7.zip |
Merge branch 'master' of git://git.et.redhat.com/libguestfs
Diffstat (limited to 'java/com/redhat/et/libguestfs/IntBool.java')
-rw-r--r-- | java/com/redhat/et/libguestfs/IntBool.java | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/java/com/redhat/et/libguestfs/IntBool.java b/java/com/redhat/et/libguestfs/IntBool.java deleted file mode 100644 index 23ea68f4..00000000 --- a/java/com/redhat/et/libguestfs/IntBool.java +++ /dev/null @@ -1,30 +0,0 @@ -/* libguestfs Java bindings - * Copyright (C) 2009 Red Hat Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -package com.redhat.et.libguestfs; - -/** - * A pair (int, boolean) - * - * @author rjones - * @see Exception - */ -public class IntBool { - public int i; - public boolean b; -} |