diff --git a/src/main/java/de/hhu/ba/yoshikoWrapper/help/HelpLinks.java b/src/main/java/de/hhu/ba/yoshikoWrapper/help/HelpLinks.java index 604225a8c0b69863a221367f9ed4e11fc99e6f7f..d96a9c8895725e28b09d7644eccec69e387a38e2 100644 --- a/src/main/java/de/hhu/ba/yoshikoWrapper/help/HelpLinks.java +++ b/src/main/java/de/hhu/ba/yoshikoWrapper/help/HelpLinks.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (C) 2018 Philipp Spohr + * Copyright (C) 2017 Philipp Spohr * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -22,16 +22,13 @@ package de.hhu.ba.yoshikoWrapper.help; import java.util.HashMap; -import java.util.Map; public final class HelpLinks { - public static final Map<String, Object> mainInfo = new HashMap<String,Object>(); + public static final HashMap<String,Object> mainInfo = new HashMap<String,Object>(); static { - mainInfo.put("url", "file:///home/philipp/workspace/cs/cytoscape-tutorials/presentations/yoshiko.html"); - mainInfo.put("title", "Yoshiko Info"); - //mainInfo.put("id", "AboutYoshiko"); - //mainInfo.put("url", "https://spqrph.github.io/cytoscape-tutorials/presentations/yoshiko.html#/title"); + //mainInfo.put("url", "file:///home/philipp/workspace/cs/cytoscape-tutorials/presentations/yoshiko.html"); + mainInfo.put("url", "https://spqrph.github.io/cytoscape-tutorials/presentations/yoshiko.html#/title"); } }