1 2 package com.android.tools.layoutlib.java; 3 4 import java.nio.ByteBuffer; 5 6 public final class NioUtils_Delegate { freeDirectBuffer(ByteBuffer buffer)7 public static void freeDirectBuffer(ByteBuffer buffer) { 8 /* 9 * NioUtils is not included in layoutlib classpath. Thus, calling NioUtils.freeDirectBuffer in 10 * {@link android.graphics.ImageReader} produces ClassNotFound exception. Moreover, it does not 11 * seem we have to do anything in here as we are only referencing the existing native buffer 12 * and do not perform any allocation on creation. 13 */ 14 } 15 }