diff options
| author | takkanm <[email protected]> | 2016-11-12 09:20:49 +0900 |
|---|---|---|
| committer | takkanm <[email protected]> | 2016-11-12 09:22:10 +0900 |
| commit | 12d64338491b4d924911cd66b9e2c85dd56af358 (patch) | |
| tree | c74d024e0d23e274725a2ef965de3468e823a268 /lib/axlsx/drawing/pic.rb | |
| parent | 731639b7d8871e79e96167b64c83f55e06bf78f6 (diff) | |
| download | caxlsx-12d64338491b4d924911cd66b9e2c85dd56af358.tar.gz caxlsx-12d64338491b4d924911cd66b9e2c85dd56af358.zip | |
fix warning: constant ::Fixnum is deprecated
fix Fixnum deprecated warning on Ruby2.4-preview3.
Fixnum was unify into Integer.
https://bugs.ruby-lang.org/issues/12005
Diffstat (limited to 'lib/axlsx/drawing/pic.rb')
| -rw-r--r-- | lib/axlsx/drawing/pic.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/drawing/pic.rb b/lib/axlsx/drawing/pic.rb index 275a6d06..5a418df0 100644 --- a/lib/axlsx/drawing/pic.rb +++ b/lib/axlsx/drawing/pic.rb @@ -53,7 +53,7 @@ module Axlsx attr_reader :hyperlink # Picture opacity - # @return [Fixnum] + # @return [Integer] attr_reader :opacity # sets or updates a hyperlink for this image. |
