From fe5c34ebae4a9ff20af3d14b77c961ab4c6d3f16 Mon Sep 17 00:00:00 2001 From: kytv Date: Tue, 13 Dec 2011 23:57:14 +0000 Subject: [PATCH] Minor Javadoc fixes The author field showed the "may eat your children" line.. --- .../freenet/support/CPUInformation/AMDCPUInfo.java | 14 +++++++------- .../src/freenet/support/CPUInformation/CPUID.java | 13 +++++++------ .../freenet/support/CPUInformation/CPUInfo.java | 13 +++++++------ .../support/CPUInformation/IntelCPUInfo.java | 14 +++++++------- 4 files changed, 28 insertions(+), 26 deletions(-) diff --git a/core/java/src/freenet/support/CPUInformation/AMDCPUInfo.java b/core/java/src/freenet/support/CPUInformation/AMDCPUInfo.java index a749e97a14..174bbe4ed8 100644 --- a/core/java/src/freenet/support/CPUInformation/AMDCPUInfo.java +++ b/core/java/src/freenet/support/CPUInformation/AMDCPUInfo.java @@ -1,19 +1,19 @@ /* * Created on Jul 17, 2004 * - */ -package freenet.support.CPUInformation; - -/** - * @author Iakin - * An interface for classes that provide lowlevel information about AMD CPU's - * * free (adj.): unencumbered; not under the control of others * Written by Iakin in 2004 and released into the public domain * with no warranty of any kind, either expressed or implied. * It probably won't make your computer catch on fire, or eat * your children, but it might. Use at your own risk. */ +package freenet.support.CPUInformation; + +/** + * An interface for classes that provide lowlevel information about AMD CPU's + * + * @author Iakin + */ public interface AMDCPUInfo extends CPUInfo { /** * @return true if the CPU present in the machine is at least an 'k6' CPU diff --git a/core/java/src/freenet/support/CPUInformation/CPUID.java b/core/java/src/freenet/support/CPUInformation/CPUID.java index e063e4ec96..37f2e7b9d7 100644 --- a/core/java/src/freenet/support/CPUInformation/CPUID.java +++ b/core/java/src/freenet/support/CPUInformation/CPUID.java @@ -1,6 +1,12 @@ /* * Created on Jul 14, 2004 * Updated on Jan 8, 2011 + * + * free (adj.): unencumbered; not under the control of others + * Written by Iakin in 2004 and released into the public domain + * with no warranty of any kind, either expressed or implied. + * It probably won't make your computer catch on fire, or eat + * your children, but it might. Use at your own risk. */ package freenet.support.CPUInformation; @@ -17,16 +23,11 @@ import net.i2p.util.FileUtil; /** - * @author Iakin * A class for retrieveing details about the CPU using the CPUID assembly instruction. * A good resource for information about the CPUID instruction can be found here: * http://www.paradicesoftware.com/specs/cpuid/index.htm * - * free (adj.): unencumbered; not under the control of others - * Written by Iakin in 2004 and released into the public domain - * with no warranty of any kind, either expressed or implied. - * It probably won't make your computer catch on fire, or eat - * your children, but it might. Use at your own risk. + * @author Iakin */ public class CPUID { diff --git a/core/java/src/freenet/support/CPUInformation/CPUInfo.java b/core/java/src/freenet/support/CPUInformation/CPUInfo.java index 0acb011e71..e58d34beb3 100644 --- a/core/java/src/freenet/support/CPUInformation/CPUInfo.java +++ b/core/java/src/freenet/support/CPUInformation/CPUInfo.java @@ -1,12 +1,6 @@ /* * Created on Jul 14, 2004 * Updated on Jan 8, 2011 - */ -package freenet.support.CPUInformation; - -/** - * @author Iakin - * An interface for classes that provide lowlevel information about CPU's * * free (adj.): unencumbered; not under the control of others * Written by Iakin in 2004 and released into the public domain @@ -14,6 +8,13 @@ package freenet.support.CPUInformation; * It probably won't make your computer catch on fire, or eat * your children, but it might. Use at your own risk. */ +package freenet.support.CPUInformation; + +/** + * An interface for classes that provide lowlevel information about CPU's + * + * @author Iakin + */ public interface CPUInfo { diff --git a/core/java/src/freenet/support/CPUInformation/IntelCPUInfo.java b/core/java/src/freenet/support/CPUInformation/IntelCPUInfo.java index 06f57d0407..a7d9cf58e5 100644 --- a/core/java/src/freenet/support/CPUInformation/IntelCPUInfo.java +++ b/core/java/src/freenet/support/CPUInformation/IntelCPUInfo.java @@ -1,19 +1,19 @@ /* * Created on Jul 17, 2004 * - */ -package freenet.support.CPUInformation; - -/** - * @author Iakin - * An interface for classes that provide lowlevel information about Intel CPU's - * * free (adj.): unencumbered; not under the control of others * Written by Iakin in 2004 and released into the public domain * with no warranty of any kind, either expressed or implied. * It probably won't make your computer catch on fire, or eat * your children, but it might. Use at your own risk. */ +package freenet.support.CPUInformation; + +/** + * An interface for classes that provide lowlevel information about Intel CPU's + * + * @author Iakin + */ public interface IntelCPUInfo extends CPUInfo { /** * @return true if the CPU is at least a Pentium CPU.