File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ Gem::Specification.new do |s|
24
24
s . executables = [ 'b2json' , 'j2bson' ]
25
25
s . require_paths = [ 'lib' ]
26
26
s . has_rdoc = 'yard'
27
- end
27
+ end
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public void objectStart(String key){
91
91
writeRubyHash (key , (RubyHash )lastObject , (IRubyObject )hash );
92
92
}
93
93
else {
94
- writeRubyArray (key , (RubyArray )lastObject , (IRubyObject )hash );
94
+ writeRubyArray (key , (RubyArray )lastObject , (IRubyObject )hash );
95
95
}
96
96
97
97
_stack .addLast ( (RubyObject )hash );
@@ -120,7 +120,7 @@ public void arrayStart(String key){
120
120
writeRubyHash (key , (RubyHash )lastObject , (IRubyObject )array );
121
121
}
122
122
else {
123
- writeRubyArray (key , (RubyArray )lastObject , (IRubyObject )array );
123
+ writeRubyArray (key , (RubyArray )lastObject , (IRubyObject )array );
124
124
}
125
125
126
126
_stack .addLast ( (RubyObject )array );
@@ -149,9 +149,7 @@ public void gotNull( String name ){
149
149
}
150
150
151
151
@ Deprecated
152
- public void gotUndefined ( String name ){
153
- throw new UnsupportedOperationException ();
154
- }
152
+ public void gotUndefined ( String name ) { }
155
153
156
154
public void gotUUID ( String name , long part1 , long part2 ) {
157
155
throw new UnsupportedOperationException ();
You can’t perform that action at this time.
0 commit comments