summaryrefslogtreecommitdiff
path: root/lib/custodian/protocoltest/mysql.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 12:39:32 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 12:39:32 +0000
commitb99b80e3a780a290a87e2cfc10e24946cde45ca7 (patch)
tree969b6dc80fd18a0f646c1657cd54db8079a7a243 /lib/custodian/protocoltest/mysql.rb
parent3dd9062d866266e1940bbf84b1ca5a63482cdadb (diff)
Avoid useless wrapping of return-value.
This: def foo line end Is the same as this: def foo return( line ) end
Diffstat (limited to 'lib/custodian/protocoltest/mysql.rb')
-rw-r--r--lib/custodian/protocoltest/mysql.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/mysql.rb b/lib/custodian/protocoltest/mysql.rb
index d61a821..36a0677 100644
--- a/lib/custodian/protocoltest/mysql.rb
+++ b/lib/custodian/protocoltest/mysql.rb
@@ -62,7 +62,7 @@ module Custodian
# Allow this test to be serialized.
#
def to_s
- return( @line )
+ @line
end