aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/NodeWithThrownExceptions.java
diff options
context:
space:
mode:
authorDanny van Bruggen <hexagonaal@gmail.com>2016-12-05 19:47:51 +0100
committerDanny van Bruggen <hexagonaal@gmail.com>2016-12-05 19:47:52 +0100
commit4296abb695b767f7471dd255d0679516183b062a (patch)
treebd3410d3ef085c1476eee70f25f2cd8f908efb7f /javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/NodeWithThrownExceptions.java
parent8bbe507b2fc32110d17bdae06c986613a3f8d0f1 (diff)
downloadplatform_external_javaparser-4296abb695b767f7471dd255d0679516183b062a.tar.gz
platform_external_javaparser-4296abb695b767f7471dd255d0679516183b062a.tar.bz2
platform_external_javaparser-4296abb695b767f7471dd255d0679516183b062a.zip
Reformat all source in Intellij Idea
Diffstat (limited to 'javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/NodeWithThrownExceptions.java')
-rw-r--r--javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/NodeWithThrownExceptions.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/NodeWithThrownExceptions.java b/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/NodeWithThrownExceptions.java
index 0a86e8881..c3b5bca29 100644
--- a/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/NodeWithThrownExceptions.java
+++ b/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/NodeWithThrownExceptions.java
@@ -16,7 +16,7 @@ public interface NodeWithThrownExceptions<N extends Node> {
/**
* Adds this type to the throws clause
- *
+ *
* @param throwType the exception type
* @return this
*/
@@ -29,7 +29,7 @@ public interface NodeWithThrownExceptions<N extends Node> {
/**
* Adds this class to the throws clause
- *
+ *
* @param clazz the exception class
* @return this
*/
@@ -42,7 +42,7 @@ public interface NodeWithThrownExceptions<N extends Node> {
* Check whether this elements throws this exception class.
* Note that this is simply a text compare of the simple name of the class,
* no actual type resolution takes place.
- *
+ *
* @param clazz the class of the exception
* @return true if found in throws clause, false if not
*/
@@ -54,7 +54,7 @@ public interface NodeWithThrownExceptions<N extends Node> {
* Check whether this elements throws this exception class
* Note that this is simply a text compare,
* no actual type resolution takes place.
- *
+ *
* @param throwableName the class of the exception
* @return true if found in throws clause, false if not
*/