diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-03 11:10:13 -0400 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-03 17:17:57 +0200 |
commit | 2f1a50d81671810256dce0852e6b1e0810ac44af (patch) | |
tree | c6058422a2f177f7c55ddaa22e329699a9d21e20 /java/t/GuestFS005Load.java | |
parent | 72c829395bb6a4800516d4f535e18af48195585b (diff) | |
download | libguestfs-2f1a50d81671810256dce0852e6b1e0810ac44af.tar.gz libguestfs-2f1a50d81671810256dce0852e6b1e0810ac44af.tar.xz libguestfs-2f1a50d81671810256dce0852e6b1e0810ac44af.zip |
Convert all TABs-as-indentation to spaces.
Do it by running this command:
[exempted files are matched via .x-sc_TAB_in_indentation]
git ls-files \
| pcregrep -vf .x-sc_TAB_in_indentation \
| xargs pcregrep -l '^ *\t' \
| xargs perl -MText::Tabs -ni -le \
'$m=/^( *\t[ \t]*)(.*)/; print $m ? expand($1) . $2 : $_'
Diffstat (limited to 'java/t/GuestFS005Load.java')
-rw-r--r-- | java/t/GuestFS005Load.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/java/t/GuestFS005Load.java b/java/t/GuestFS005Load.java index a1d1c072..23f1611d 100644 --- a/java/t/GuestFS005Load.java +++ b/java/t/GuestFS005Load.java @@ -21,13 +21,13 @@ import com.redhat.et.libguestfs.*; public class GuestFS005Load { public static void main (String[] argv) { - try { - GuestFS g = new GuestFS (); - g.close (); - } - catch (Exception exn) { - System.err.println (exn); - System.exit (1); - } + try { + GuestFS g = new GuestFS (); + g.close (); + } + catch (Exception exn) { + System.err.println (exn); + System.exit (1); + } } } |