From: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Date: Fri, 4 Mar 2016 15:03:06 +0000 (+0000)
Subject: Remove pointless prototypes on methods
X-Git-Tag: v1.81_01~3
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d7c862e016d9b7ff1179d00d260f84a0a8ce6ef5;p=dbsrgits%2FSQL-Abstract.git

Remove pointless prototypes on methods
---

diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm
index 4017d64..9741efb 100644
--- a/lib/SQL/Abstract.pm
+++ b/lib/SQL/Abstract.pm
@@ -1419,7 +1419,7 @@ sub _quote {
 
 
 # Conversion, if applicable
-sub _convert ($) {
+sub _convert {
   #my ($self, $arg) = @_;
   if ($_[0]->{convert}) {
     return $_[0]->_sqlcase($_[0]->{convert}) .'(' . $_[1] . ')';
@@ -1428,7 +1428,7 @@ sub _convert ($) {
 }
 
 # And bindtype
-sub _bindtype (@) {
+sub _bindtype {
   #my ($self, $col, @vals) = @_;
   # called often - tighten code
   return $_[0]->{bindtype} eq 'columns'