create projects in core without name
[jSite2.git] / src / net / pterodactylus / jsite / core / Core.java
index d2a5e10..3e8357d 100644 (file)
@@ -111,17 +111,15 @@ public interface Core {
        public void disconnectFromNode(Node node);
 
        /**
-        * Creates a new project with the given name. The returned {@link Project}
-        * will contain a newly generated key pair.
+        * Creates a new project. The returned {@link Project} will contain a newly
+        * generated key pair.
         * 
-        * @param projectName
-        *            The name of the project
         * @return A newly created project
         * @throws IOException
         *             if an I/O error occured communicating with the node
         * @throws NoNodeException
         *             if no node is configured
         */
-       public Project createProject(String projectName) throws IOException, NoNodeException;
+       public Project createProject() throws IOException, NoNodeException;
 
 }