diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-16 10:16:03 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-16 10:16:03 +0200 |
commit | 2d3b98e847b9dc1878b657de97fce2f54104776d (patch) | |
tree | a66995df3efe3d1f4c5075ec098a1b7114aabb4d /src/lombok/Lombok.java | |
parent | b5c8b725655d2ad8a715cfb1fbbdf25dbdcd4ceb (diff) | |
download | lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.tar.gz lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.tar.bz2 lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.zip |
Switched all use of <code></code> in javadoc to {@code}.
Diffstat (limited to 'src/lombok/Lombok.java')
-rw-r--r-- | src/lombok/Lombok.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lombok/Lombok.java b/src/lombok/Lombok.java index f2f196ed..71684f4f 100644 --- a/src/lombok/Lombok.java +++ b/src/lombok/Lombok.java @@ -39,9 +39,9 @@ public class Lombok { * 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> - + * Note that this method has a return type of {@code RuntimeException} it is advised you always call this + * method as argument to the {@code throw} statement to avoid compiler errors regarding no return + * statement and similar problems. This method won't of course return an actual {@code RuntimeException} - * it never returns, it always throws the provided exception. * * @param t The throwable to throw without requiring you to catch its type. |