Create GaeUtils.java

Former-commit-id: 3496417812
This commit is contained in:
David Benson 2017-03-29 13:37:59 +01:00 committed by GitHub
parent b44b2f634f
commit 9e8db13ce3

View file

@ -0,0 +1,18 @@
package com.mxgraph.online;
/**
* Stub for non GAE environments
*
*/
public class GaeUtils
{
public static String convertBmp(byte[] bytes)
{
return null;
}
public static boolean isGae()
{
return false;
}
}