Chris2018998 / beecp

A small JDBC Connection pool
Apache License 2.0
88 stars 18 forks source link

There are a problem in class#PooledConnectionArray method#allAll #2

Closed myhubxxx closed 5 years ago

myhubxxx commented 5 years ago

System.arraycopy(arrayOld,0,arrayNew,0,oldLen); System.arraycopy(arrayAdd,0,arrayNew,0,addLen); can be System.arraycopy(arrayOld,0,arrayNew,0,oldLen); System.arraycopy(arrayAdd,0,arrayNew,oldLen,addLen);

Chris2018998 commented 5 years ago

Thanks, I fixed it.