CleanUp Code

This commit is contained in:
--=FurtiF™=-- 2016-10-26 21:16:45 +02:00
parent 93a77dfa8e
commit fd7fefcd0f
7 changed files with 7 additions and 24 deletions

View File

@ -46,12 +46,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Global", "Global", "{76A6EB
.travis.yml = .travis.yml .travis.yml = .travis.yml
cfg.js.example = cfg.js.example cfg.js.example = cfg.js.example
Dockerfile = Dockerfile Dockerfile = Dockerfile
install-windows.bat = install-windows.bat
LICENSE = LICENSE LICENSE = LICENSE
package.json = package.json package.json = package.json
README.md = README.md README.md = README.md
run-api-windows.bat = run-api-windows.bat run-api-windows.bat = run-api-windows.bat
run-bot-windows.bat = run-bot-windows.bat run-bot-windows.bat = run-bot-windows.bat
run-install-windows.bat = run-install-windows.bat
supervisord.conf = supervisord.conf supervisord.conf = supervisord.conf
updater.js = updater.js updater.js = updater.js
EndProjectSection EndProjectSection

View File

@ -1,4 +1,4 @@
<html> <html>
<head> <head>
<meta charset='utf-8'> <meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

View File

@ -7,9 +7,7 @@ import Cell from "./models/World/Cell";
import print from "./print"; import print from "./print";
import CFG from "../cfg"; import CFG from "../cfg";
import { import { getHashCodeFrom } from "./utils";
getHashCodeFrom
} from "./utils";
const S2Geo = s2.S2; const S2Geo = s2.S2;

View File

@ -4,12 +4,7 @@ import request from "request";
import readline from "readline"; import readline from "readline";
import POGOProtos from "pokemongo-protobuf"; import POGOProtos from "pokemongo-protobuf";
import { import { _toCC, deXOR, inherit, getHashCodeFrom } from "./utils";
_toCC,
deXOR,
inherit,
getHashCodeFrom
} from "./utils";
import print from "./print"; import print from "./print";
import CFG from "../cfg"; import CFG from "../cfg";

View File

@ -6,11 +6,7 @@ import POGOProtos from "pokemongo-protobuf";
import print from "./print"; import print from "./print";
import CFG from "../cfg"; import CFG from "../cfg";
import { import { deXOR, validEmail, getHashCodeFrom } from "./utils";
deXOR,
validEmail,
getHashCodeFrom
} from "./utils";
/** /**
* @param {Request} req * @param {Request} req

View File

@ -3,9 +3,7 @@ import POGOProtos from "pokemongo-protobuf";
import print from "./print"; import print from "./print";
import CFG from "../cfg"; import CFG from "../cfg";
import { import { _toCC } from "./utils";
_toCC
} from "./utils";
/** /**
* @param {Request} req * @param {Request} req

View File

@ -10,11 +10,7 @@ import * as shared from "./shared";
import GameMaster from "./models/GameMaster"; import GameMaster from "./models/GameMaster";
import { import { _toCC, capitalize, idToPkmnBundleName } from "./utils";
_toCC,
capitalize,
idToPkmnBundleName
} from "./utils";
export function setup() { export function setup() {