Fixing merge detritus

This commit is contained in:
Joakim Erdfelt 2016-03-15 09:28:47 -07:00
parent dcfa0b8910
commit 1b1c331763
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ public interface Callback
* Instance of Adapter that can be used when the callback methods need an empty
* implementation without incurring in the cost of allocating a new Adapter object.
*/
static Callback NOOP = new Callback(){};
static Callback NOOP = new Callback()
{
};
/**