Skip to content

Commit

Permalink
Merge pull request #1 from BenRussert/master
Browse files Browse the repository at this point in the history
fixes deprecation warnings for 0.5
  • Loading branch information
ultradian authored Mar 20, 2017
2 parents 15350cf + de500fc commit 90c2fa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ os:
- linux
- osx
julia:
- 0.4
- 0.5
notifications:
email: false
2 changes: 1 addition & 1 deletion src/DICOM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ function element(st, evr, dcm)
sz = read(st,lentype)

data =
vr=="ST" || vr=="LT" || vr=="UT" ? bytestring(read(st, UInt8, sz)) :
vr=="ST" || vr=="LT" || vr=="UT" ? string(read(st, UInt8, sz)) :

sz==0 || vr=="XX" ? Any[] :

Expand Down

0 comments on commit 90c2fa9

Please sign in to comment.