Console: Split net.i2p.router.web into two packages, and move the new .helper package to the war

This commit is contained in:
zzz
2017-12-01 14:07:29 +00:00
parent 6c56d679ab
commit 9b2a85df38
118 changed files with 478 additions and 281 deletions

View File

@@ -0,0 +1,16 @@
package net.i2p.router.web;
/**
* Basic graph defaults
*
* @since 0.9.33 pulled out of GraphHelper
*/
public class GraphConstants {
private GraphConstants() {}
public static final int DEFAULT_X = 400;
public static final int DEFAULT_Y = 100;
public static final int MAX_X = 2048;
public static final int MAX_Y = 1024;
}