[BUGFIX] Solved issue with docs build

This commit is contained in:
JKetelaar
2016-06-26 17:37:32 +02:00
parent 47e34e6736
commit 47195f1f84
5 changed files with 11 additions and 1117 deletions
@@ -27,7 +27,7 @@ public class Getter implements Injectable {
*
* @param into - classnode to inject getter method in
* @param fieldLocation - classnode where field is located
* @param fieldName - field name to get
* @param fieldNode - field name to get
* @param methodName - method name of getter
* @param returnDesc - return type of method, can be null for default return
* @param staticMethod - pass true if you want the method to be static
@@ -32,7 +32,6 @@ import org.parabot.core.io.SizeInputStream;
import org.parabot.core.ui.components.VerboseLoader;
/**
*
* Manages, parses and dumps class files & jars
*
* @author Everel
@@ -83,7 +82,7 @@ public class ClassPath {
/**
* Adds a jar to this classpath
*
* @param url
* @param connection
*/
public void addJar(final URLConnection connection) {
try {
@@ -148,7 +147,7 @@ public class ClassPath {
/**
* Finds and loads all classes/jar files in folder
*
* @param file
* @param f
* to find class / jar files
* @param root
*/
@@ -191,10 +190,10 @@ public class ClassPath {
/**
* Loads class from input stream
*
* @param inputstream
*
* @param in
* @throws IOException
*/
*/
protected void loadClass(InputStream in) throws IOException {
ClassReader cr = new ClassReader(in);
ClassNode cn = new ClassNode();
@@ -15,11 +15,11 @@ public abstract class AbstractDebugger implements Paintable {
* Toggles this debugger
*/
public abstract void toggle();
/**
*
* @return <b>true</b> if this debugger is enabled, otherwise <b>false</b>
*/
*
* @return True if this debugger is enabled, otherwise false
*/
public abstract boolean isEnabled();
}
@@ -14,7 +14,7 @@ public class Timer {
/**
* Timer Constructor
*
* @param start
* @param end
*/
public Timer(long end) {
File diff suppressed because it is too large Load Diff