lib/gooddata/models/empty_result.rb in gooddata-0.6.10 vs lib/gooddata/models/empty_result.rb in gooddata-0.6.11
- old
+ new
@@ -22,19 +22,19 @@
end
alias_method :to_table, :table
alias_method :without_column_headers, :table
- def ==(other)
+ def ==(_other)
false
end
- def diff(otherDataResult)
+ def diff(_otherDataResult)
['empty']
end
- def [](index, options = {})
+ def [](index, _options = {})
to_table[index]
end
alias_method :row, :[]
@@ -44,14 +44,14 @@
def column(index)
table[index]
end
- def include_row?(row = nil)
+ def include_row?(_row = nil)
false
end
- def include_column?(row = nil)
+ def include_column?(_row = nil)
false
end
end
end