* remove unessessary script
authorchristian mueller <christian.ei.mueller@bmw.de>
Fri, 23 Mar 2012 11:52:33 +0000 (12:52 +0100)
committerchristian mueller <christian.ei.mueller@bmw.de>
Fri, 23 Mar 2012 11:52:33 +0000 (12:52 +0100)
Signed-off-by: christian mueller <christian.ei.mueller@bmw.de>
include/control/uncomment.pl [deleted file]

diff --git a/include/control/uncomment.pl b/include/control/uncomment.pl
deleted file mode 100755 (executable)
index f06f52c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-use strict;
-use warnings;
-
-foreach (@ARGV)
-{
-
-       open FILE, $_ or die "Couldn't open file: $!"; 
-       my $string = join("", <FILE>); 
-       close FILE;
-
-       $string=~ s|/[*].*?[*]/||sg;
-       $string=~ s/virtual//sg; 
-       $string=~ s/=0;/;/sg;
-       $string=~ s/(^|\n)[\n\s]*/$1/g;
-
-       open F, ">$_" or die "Couldn't open file: $!"; 
-       print F $string;
-       close F;
-}
-
-
-
-
-