Skip to content

Commit

Permalink
Java Docs Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Konloch committed Sep 5, 2024
1 parent 65d11ab commit 77faf42
Show file tree
Hide file tree
Showing 29 changed files with 29 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
/**
* @author Konloch
* @author Bibl (don't ban me pls)
* @created 19 Jul 2015 03:22:37
* @since 19 Jul 2015 03:22:37
*/
public class Boot {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
/**
* @author Konloch
* @author Bibl (don't ban me pls)
* @created 19 Jul 2015 04:12:21
* @since 19 Jul 2015 04:12:21
*/
public class InitialBootScreen extends JFrame
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 25 May 2015 (actually before this)
* @since 25 May 2015 (actually before this)
*/
public class ClassHelper {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 25 May 2015 (actually before this)
* @since 25 May 2015 (actually before this)
*/
public class ClassTree {
private static final SetCreator<ClassNode> SET_CREATOR = new SetCreator<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* @author Bibl (don't ban me pls)
* @created ages ago
* @since ages ago
*/
public class NullCreator<V> implements ValueCreator<V> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* @author Bibl (don't ban me pls)
* @created ages ago
* @since ages ago
*/
public class NullPermeableHashMap<K, V> extends HashMap<K, V> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 25 May 2015 (actually before this)
* @since 25 May 2015 (actually before this)
*/
public class SetCreator<T> implements ValueCreator<Set<T>> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* @author Bibl (don't ban me pls)
* @created ages ago
* @since ages ago
*/
public interface ValueCreator<V> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 21 Jul 2015 00:18:07
* @since 21 Jul 2015 00:18:07
*/
public final class AbstractLoaderFactory {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 21 Jul 2015 00:09:53
* @since 21 Jul 2015 00:09:53
*/
public class ClassPathLoader implements ILoader<Object> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 19 Jul 2015 02:29:43
* @since 19 Jul 2015 02:29:43
*/
public interface ILoader<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 19 Jul 2015 02:48:41
* @since 19 Jul 2015 02:48:41
*
* TODO: Resource loading
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 21 Jul 2015 00:14:53
* @since 21 Jul 2015 00:14:53
*/
public interface LoaderFactory<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
* @author Bibl (don't ban me pls)
* @created ages ago
* @since 21 Jul 2013
*/
public abstract class DataContainer<T> extends ArrayList<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 21 Jul 2015 00:29:11
* @since 21 Jul 2015 00:29:11
*/
public class EmptyExternalResource<T> extends ExternalResource<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 19 Jul 2015 02:33:23
* @since 19 Jul 2015 02:33:23
*/
public class ExternalLibrary extends ExternalResource<JarContents<ClassNode>> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 19 Jul 2015 02:30:30
* @since 19 Jul 2015 02:30:30
*/
public abstract class ExternalResource<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Holds information about a single local or external JarFile.
*
* @author Bibl
* @created ages ago
* @since 19 Jul 2013
*/
public class JarInfo {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* @author Bibl (don't ban me pls)
* @created ages ago
* @since 19 Jul 2013
*/
public class JarResource {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Type of Jar Stored.
*
* @author Bibl
* @created ages ago
* @since 19 Jul 2013
*/
public enum JarType {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

/**
* @author Bibl (don't ban me pls)
* @created ages ago
* @since 19 Jul 2013
*/
public class JarContents<C extends ClassNode> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* @author Bibl (don't ban me pls)
* @created ages ago
* @since 19 Jul 2013
*/
public class LocateableJarContents<C extends ClassNode> extends JarContents<C> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
* @author Bibl (don't ban me pls)
* @created 1 Jun 2015
* @since 1 Jun 2015
*/
public interface PluginLaunchStrategy {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**
* @author Konloch
* @author Bibl (don't ban me pls)
* @created 1 Jun 2015
* @since 1 Jun 2015
*/
public class CompiledJavaPluginLaunchStrategy implements PluginLaunchStrategy {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* @author Konloch
* @author Bibl (don't ban me pls)
* @created 1 Jun 2015
* @since 1 Jun 2015
*/
public class GroovyPluginLaunchStrategy implements PluginLaunchStrategy {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* @author Konloch
* @author Bibl (don't ban me pls)
* @created 1 Jun 2015
* @since 1 Jun 2015
*/

public class JavaPluginLaunchStrategy implements PluginLaunchStrategy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* @author Konloch
* @author Bibl (don't ban me pls)
* @created 1 Jun 2015
* @since 1 Jun 2015
*/
public class PythonPluginLaunchStrategy implements PluginLaunchStrategy {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* @author Konloch
* @author Bibl (don't ban me pls)
* @created 1 Jun 2015
* @since 1 Jun 2015
*/
public class RubyPluginLaunchStrategy implements PluginLaunchStrategy {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Encoding Convert Utils
*
* @author hupan
* @date 2019-11-19 14:29
* @since 2019-11-19 14:29
*/
public class EncodeUtils {

Expand Down

0 comments on commit 77faf42

Please sign in to comment.