Rename reset() -> free() to be more in line with what it now does

Summary: Rename reset() -> free() to be more in line with what it now does as the default implementation is JNI

Reviewed By: lucasr

Differential Revision: D3992808

fbshipit-source-id: 8428ae33268d1417ce8642b741e47150a17bf077
This commit is contained in:
Emil Sjolander
2016-10-12 03:44:53 -07:00
committed by Facebook Github Bot
parent 1de914737a
commit 23acf2156f
3 changed files with 6 additions and 6 deletions

View File

@@ -90,5 +90,5 @@ public interface CSSNodeAPI<CSSNodeType extends CSSNodeAPI> {
void setData(Object data);
Object getData();
void init();
void reset();
void free();
}