Skip to content

Commit caf38ba

Browse files
committed
Add REST client module and enhance parallel test support
Introduced a new REST client module and updated configurations in `pom.xml` and `.gitmodules`. Enhanced server options and request body handling with additional configuration. Added parallel request tests to verify REST endpoints' concurrency support and response validity.
1 parent f06291d commit caf38ba

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

  • src/main/java/com/jwebmp/core/base/angular/client/services/interfaces

src/main/java/com/jwebmp/core/base/angular/client/services/interfaces/INgDataType.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -590,10 +590,6 @@ default List<NgComponentReference> renderFieldReference(String fieldName, Class
590590
}
591591
else if (Collection.class.isAssignableFrom(fieldType) || fieldType.isArray())
592592
{
593-
if (fieldType.isArray())
594-
{
595-
System.out.print("field is array - ");
596-
}
597593
if (field.getGenericType() instanceof ParameterizedType)
598594
{
599595
var arguments = ((ParameterizedType) field.getGenericType()).getActualTypeArguments();
@@ -622,14 +618,6 @@ else if (arg0 instanceof Class<?> && !arg0.equals(Object.class) && !arg0.equals(
622618
}
623619
}
624620
}
625-
/* else if (fieldType.isArray())
626-
{
627-
//get generic type
628-
String genericType = fieldType.arrayType()
629-
.getCanonicalName();
630-
appendBasicFieldType();
631-
renderFieldReference(fieldName, fieldType.arrayType(), field, true);
632-
}*/
633621
return refs;
634622
}
635623

0 commit comments

Comments
 (0)