Mercurial Hosting > luan
comparison src/org/eclipse/jetty/io/Buffer.java @ 1042:a62193321d6a
remove Buffer.reset()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 04 Nov 2016 01:03:25 -0600 |
parents | 35e3c864d7a7 |
children | ae1c92957739 |
comparison
equal
deleted
inserted
replaced
1041:35e3c864d7a7 | 1042:a62193321d6a |
---|---|
229 * @return an <code>int</code> value >= getIndex() | 229 * @return an <code>int</code> value >= getIndex() |
230 */ | 230 */ |
231 int putIndex(); | 231 int putIndex(); |
232 | 232 |
233 /** | 233 /** |
234 * Reset the current getIndex to the mark | |
235 */ | |
236 void reset(); | |
237 | |
238 /** | |
239 * Set the buffers start getIndex. | 234 * Set the buffers start getIndex. |
240 * @param newStart an <code>int</code> value | 235 * @param newStart an <code>int</code> value |
241 */ | 236 */ |
242 void setGetIndex(int newStart); | 237 void setGetIndex(int newStart); |
243 | 238 |