summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>2011-04-30 00:58:37 +0100
committerKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>2011-04-30 00:58:37 +0100
commit551f4ce95b5a7b141d40e654026ff3b000481096 (patch)
tree75eae8afc3ebda0e5deafbf5e92dcc15eb304eda
parent555c50d73595478a8a422b83d073514f7dbed0f0 (diff)
downloadpuppet-stdlib-551f4ce95b5a7b141d40e654026ff3b000481096.tar.gz
puppet-stdlib-551f4ce95b5a7b141d40e654026ff3b000481096.tar.bz2
Moved to unless from if not and removed TODO.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
-rw-r--r--empty.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/empty.rb b/empty.rb
index 1db9b63..e78ebf0 100644
--- a/empty.rb
+++ b/empty.rb
@@ -2,8 +2,6 @@
# empty.rb
#
-# TODO(Krzysztof Wilczynski): Support for hashes would be nice too ...
-
module Puppet::Parser::Functions
newfunction(:empty, :type => :rvalue, :doc => <<-EOS
EOS
@@ -15,8 +13,8 @@ module Puppet::Parser::Functions
value = arguments[0]
klass = value.class
- if not [Array, Hash, String].include?(klass)
- raise(Puppet::ParseError, 'empty(): Requires either an ' +
+ unless [Array, Hash, String].include?(klass)
+ raise(Puppet::ParseError, 'empty(): Requires either ' +
'array, hash or string to work with')
end