File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/jruby/ext/openssl Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ public final BigInteger getValue() {
119
119
}
120
120
121
121
@ JRubyMethod (name ="initialize" , required =1 , optional =1 , visibility = Visibility .PRIVATE )
122
- public synchronized IRubyObject initialize (final ThreadContext context ,
122
+ public IRubyObject initialize (final ThreadContext context ,
123
123
final IRubyObject [] args ) {
124
124
final Ruby runtime = context .runtime ;
125
125
if (this .value != BigInteger .ZERO ) { // already initialized
@@ -171,7 +171,7 @@ public synchronized IRubyObject initialize_copy(final IRubyObject that) {
171
171
}
172
172
173
173
@ JRubyMethod (name = "copy" )
174
- public synchronized IRubyObject copy (IRubyObject other ) {
174
+ public IRubyObject copy (IRubyObject other ) {
175
175
if (this != other ) {
176
176
this .value = getBigInteger (other );
177
177
}
You can’t perform that action at this time.
0 commit comments