parent
b44b2f634f
commit
9e8db13ce3
1 changed files with 18 additions and 0 deletions
18
src/com/mxgraph/online/GaeUtils.java
Normal file
18
src/com/mxgraph/online/GaeUtils.java
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue