File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require "./type_lookup"
6
6
class Crystal::Call
7
7
property! scope : Type
8
8
property with_scope : Type ?
9
- property! parent_visitor : MainVisitor ?
9
+ property! parent_visitor : MainVisitor
10
10
property target_defs : Array (Def )?
11
11
property expanded : ASTNode ?
12
12
property? uses_with_scope = false
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ module Crystal
51
51
52
52
alias RowTypes = Array (Cell ) | Separator
53
53
54
- property! last_string_row : Array (Cell )?
54
+ property! last_string_row : Array (Cell )
55
55
property columns : Array (Column )
56
56
57
57
def initialize (@io : IO )
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ class HTTP::Client
83
83
{% if flag?(:without_openssl ) % }
84
84
getter! tls : Nil
85
85
{% else % }
86
- getter! tls : OpenSSL ::SSL ::Context ::Client ?
86
+ getter! tls : OpenSSL ::SSL ::Context ::Client
87
87
{% end % }
88
88
89
89
# Whether automatic compression/decompression is enabled.
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ require "./openssl/lib_ssl"
56
56
# ```
57
57
module OpenSSL
58
58
class Error < Exception
59
- getter! code : LibCrypto ::ULong ?
59
+ getter! code : LibCrypto ::ULong
60
60
61
61
def initialize (message = nil , fetched = false )
62
62
@code ||= LibCrypto ::ULong .new(0 )
You can’t perform that action at this time.
0 commit comments