Skip to content

Commit 9a3590f

Browse files
author
moiz arafat
committed
Review Comments
1 parent a9d6f0d commit 9a3590f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

elide-contrib/elide-dynamic-config-helpers/src/main/java/com/yahoo/elide/contrib/dynamicconfighelpers/compile/ElideDynamicEntityCompiler.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class ElideDynamicEntityCompiler {
4545
/**
4646
* Parse dynamic config path.
4747
* @param path : Dynamic config hjsons root location
48-
* @throws IOException
48+
* @throws IOException IOException thrown
4949
*/
5050
public ElideDynamicEntityCompiler(String path) throws IOException {
5151

@@ -54,7 +54,6 @@ public ElideDynamicEntityCompiler(String path) throws IOException {
5454
ElideConfigParser elideConfigParser = new ElideConfigParser(path);
5555
HandlebarsHydrator hydrator = new HandlebarsHydrator();
5656

57-
5857
tableConfig = elideConfigParser.getElideTableConfig();
5958
securityConfig = elideConfigParser.getElideSecurityConfig();
6059
tableClasses = hydrator.hydrateTableTemplate(tableConfig);
@@ -121,7 +120,7 @@ public Class<?> getCompiled(String name) {
121120
* @throws ClassNotFoundException
122121
*/
123122
@SuppressWarnings({ "rawtypes", "unchecked" })
124-
public Set<Class<?>> findAnnotatedClasses(Class annotationClass)
123+
public Set<Class<?>> findAnnotatedClasses(Class annotationClass)
125124
throws ClassNotFoundException {
126125

127126
Set<Class<?>> annotatedClasses = new HashSet<Class<?>>();
@@ -144,7 +143,7 @@ public Set<Class<?>> findAnnotatedClasses(Class annotationClass)
144143
* @throws ClassNotFoundException
145144
*/
146145
@SuppressWarnings({ "rawtypes", "unchecked" })
147-
public List<String> findAnnotatedClassNames(Class annotationClass)
146+
public List<String> findAnnotatedClassNames(Class annotationClass)
148147
throws ClassNotFoundException {
149148

150149
List<String> annotatedClasses = new ArrayList<String>();

0 commit comments

Comments
 (0)