DataONEorg / bookkeeper

Bookkeeper keeps track of DataONE product subscriptions and quotas for researchers using the extended services.
Other
1 stars 2 forks source link

update use of deprecated Interger(int) constructor #95

Open mbjones opened 1 year ago

mbjones commented 1 year ago

Much of the code uses new Integer(int), which has been deprecated and slated for removal. Update to use Integer.valueOf() instead.

Warnings appear as:

Integer(int) in java.lang.Integer has been deprecated

mbjones commented 1 year ago

Fixed the warnings in sha 537fc46b2866.