aboutsip / pkts

Pure java based pcap library capable of reading and writing to/from pcaps.
Other
196 stars 91 forks source link

Fix typo in method name `Buffer#getByes(byte[])` #82

Closed joschi closed 6 years ago

joschi commented 6 years ago

The Buffer#getByes(byte[]) method suffered from a typo. The method has been renamed and a (deprecated) default implementation with the old name has been added which delegates to the correctly spelled method, so that existing consumers of the misspelled method don't break.

jonbo372 commented 6 years ago

Thank you!