aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/Lombok.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-07-06 06:08:05 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-07-06 06:08:05 +0200
commit8534a8e0a552f21ad6479e94fad8db36e67d44d5 (patch)
treebfd4c5eadd72b306fd1e2a488fc977917f80bccd /src/lombok/Lombok.java
parent527b992a074c1c65727bc52c820d40340f074a6b (diff)
downloadlombok-8534a8e0a552f21ad6479e94fad8db36e67d44d5.tar.gz
lombok-8534a8e0a552f21ad6479e94fad8db36e67d44d5.tar.bz2
lombok-8534a8e0a552f21ad6479e94fad8db36e67d44d5.zip
Fixed javadoc problems, and added a javadoc target to the build script.
Diffstat (limited to 'src/lombok/Lombok.java')
-rw-r--r--src/lombok/Lombok.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/Lombok.java b/src/lombok/Lombok.java
index 400bf3ea..9656b7fd 100644
--- a/src/lombok/Lombok.java
+++ b/src/lombok/Lombok.java
@@ -28,17 +28,17 @@ public class Lombok {
/**
* Throws any throwable 'sneakily' - you don't need to catch it, nor declare that you throw it onwards.
* The exception is still thrown - javac will just stop whining about it.
- *
+ * <p>
* Example usage:
- *
+ * <p>
* <pre>public void run() {
* throw sneakyThrow(new IOException("You don't need to catch me!"));
* }</pre>
- *
+ * <p>
* NB: The exception is not wrapped, ignored, swallowed, or redefined. The JVM actually does not know or care
* about the concept of a 'checked exception'. All this method does is hide the act of throwing a checked exception
* from the java compiler.
- *
+ * <p>
* Note that this method has a return type of <code>RuntimeException</code> it is advised you always call this
* method as argument to the <code>throw</code> statement to avoid compiler errors regarding no return
* statement and similar problems. This method won't of course return an actual <code>RuntimeException</code> -