<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Olaf&#039;s blog &#187; fun with code</title>
	<atom:link href="http://olafsblog.sysbsb.de/category/fun-with-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://olafsblog.sysbsb.de</link>
	<description>Olaf&#039;s blog on software development and life</description>
	<lastBuildDate>Thu, 18 Nov 2010 07:57:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Checkstyle error: Uncommented main method found&#8230;</title>
		<link>http://olafsblog.sysbsb.de/checkstyle-error-uncommented-main-method-found/</link>
		<comments>http://olafsblog.sysbsb.de/checkstyle-error-uncommented-main-method-found/#comments</comments>
		<pubDate>Wed, 14 May 2008 16:13:12 +0000</pubDate>
		<dc:creator>olaf</dc:creator>
				<category><![CDATA[fun with code]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://olafsblog.sysbsb.de/?p=50</guid>
		<description><![CDATA[Just for the record: The checkstyle error Uncommented main method found does NOT mean the main method lacks a javadoc comment, but that the main method is not commented out. Checkstyle regards main methods as useless &#8220;debugging&#8221; leftovers. 
//CHECKSTYLE:OFF and //CHECKSTYLE:ON helped me out. And yes, i think this particular check is really, really, really [...]]]></description>
			<content:encoded><![CDATA[<p>Just for the record: The checkstyle error <code>Uncommented main method found</code> does NOT mean the main method lacks a javadoc comment, <a href="http://checkstyle.sourceforge.net/config_misc.html#UncommentedMain">but that the main method is <em>not commented out</em></a>. Checkstyle regards main methods as useless &#8220;debugging&#8221; leftovers. </p>
<p><a href="http://checkstyle.sourceforge.net/config.html"><code>//CHECKSTYLE:OFF and //CHECKSTYLE:ON</code></a> helped me out. And yes, i think this particular check is really, really, really useless. I think someone using arbitrary main methods in sourcecode for debugging purposes is hardly going to know of checkstyle&#8217;s existence anyway&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://olafsblog.sysbsb.de/checkstyle-error-uncommented-main-method-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evolutionäre Softwareentwicklung vs. Kreationismus</title>
		<link>http://olafsblog.sysbsb.de/evolutionare-softwareentwicklung-vs-kreationismus/</link>
		<comments>http://olafsblog.sysbsb.de/evolutionare-softwareentwicklung-vs-kreationismus/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 01:39:08 +0000</pubDate>
		<dc:creator>olaf</dc:creator>
				<category><![CDATA[fun with code]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://olafsblog.sysbsb.de/?p=3</guid>
		<description><![CDATA[
package java.lang;

/**
 * Class &#60;code&#62;Object&#60;/code&#62; is the root of the class hierarchy.
 * Every class has &#60;code&#62;Object&#60;/code&#62; as a superclass. All objects,
 * including arrays, implement the methods of this class.
 *
 * @author  God
 * @see       Bible
 * @since    The beginning
 */
public class Object [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush: java;">
package java.lang;

/**
 * Class &lt;code&gt;Object&lt;/code&gt; is the root of the class hierarchy.
 * Every class has &lt;code&gt;Object&lt;/code&gt; as a superclass. All objects,
 * including arrays, implement the methods of this class.
 *
 * @author  God
 * @see       Bible
 * @since    The beginning
 */
public class Object {

    private static native void registerNatives();

...
</pre>
<p>Hmmm. Ich weis nicht.</p>
]]></content:encoded>
			<wfw:commentRss>http://olafsblog.sysbsb.de/evolutionare-softwareentwicklung-vs-kreationismus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

