Chris2018998 / beecp

A small JDBC Connection pool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

There are a problem in class#PooledConnectionArray method#allAll

myhubxxx opened this issue · comments

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);

Thanks, I fixed it.