From: Stefano Lattarini Date: Thu, 24 May 2012 09:12:04 +0000 (+0200) Subject: [ng] cleanup: remove unused private variables in Automake::Variable X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95692e07524f8aee27446846d66429f8db635c18;p=thirdparty%2Fautomake.git [ng] cleanup: remove unused private variables in Automake::Variable * lib/Automake/Variable.pm ($_VARIABLE_CHARACTERS, $_VARIABLE_PATTERN, $_VARIABLE_RECURSIVE_PATTERN): Remove, they have been unneeded and unused since commit 'v1.11-1779-g9a82dcd' of 2012-01-23, "[ng] vars: don't warn about non-POSIX names or GNU make function calls". Signed-off-by: Stefano Lattarini --- diff --git a/lib/Automake/Variable.pm b/lib/Automake/Variable.pm index 6ed112c4c..7f1643db4 100644 --- a/lib/Automake/Variable.pm +++ b/lib/Automake/Variable.pm @@ -130,11 +130,6 @@ non-object). =cut -my $_VARIABLE_CHARACTERS = '[.A-Za-z0-9_@]+'; -my $_VARIABLE_PATTERN = '^' . $_VARIABLE_CHARACTERS . "\$"; -my $_VARIABLE_RECURSIVE_PATTERN = - '^([.A-Za-z0-9_@]|\$[({]' . $_VARIABLE_CHARACTERS . '[})]?)+' . "\$"; - # The order in which variables should be output. (May contain # duplicates -- only the first occurrence matters.) my @_var_order;