Commit 4078a3b0 authored by Jérome Perrin's avatar Jérome Perrin

remove some dead code

parent 484b9817
...@@ -137,14 +137,6 @@ def getGUIInstance(): ...@@ -137,14 +137,6 @@ def getGUIInstance():
def getConfigurationDict(): def getConfigurationDict():
return jsonify(getGUIInstance().getConfigurationDict()) return jsonify(getGUIInstance().getConfigurationDict())
@app.route("/getOutputIdList", methods=["POST", "OPTIONS"])
def getOutputIdList():
return jsonify(getGUIInstance().getOutputIdList())
@app.route("/getInputIdList", methods=["POST", "OPTIONS"])
def getInputIdList():
return jsonify(getGUIInstance().getInputIdList())
def main(*args): def main(*args):
parser = argparse.ArgumentParser(description='Launch the DREAM simulation platform.') parser = argparse.ArgumentParser(description='Launch the DREAM simulation platform.')
parser.add_argument('gui_class', metavar='GUI_KLASS', parser.add_argument('gui_class', metavar='GUI_KLASS',
...@@ -174,4 +166,4 @@ def run(*args): ...@@ -174,4 +166,4 @@ def run(*args):
print json.dumps(output_data, indent=True) print json.dumps(output_data, indent=True)
if __name__ == "__main__": if __name__ == "__main__":
main() main()
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment