Skip to content

Commit

Permalink
feat: fix base repository structure
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Apr 11, 2024
1 parent 757c62e commit 1b8d758
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -36,7 +36,7 @@
* @param <T> the entity type
* @param <K> the K entity
*/
public abstract class AbstractSemiStructuredRepositoryProxy<T, K> extends BaseSemistructuredRepository<T, K> {
public abstract class AbstractSemiStructuredRepositoryProxy<T, K> extends BaseSemiStructuredRepository<T, K> {

@Override
protected Object executeQuery(Object instance, Method method, Object[] params) {
Expand Down
Expand Up @@ -55,7 +55,7 @@
* @param <T> The type of entities managed by the repository.
*
*/
public abstract class BaseSemistructuredRepository<T, K> extends AbstractRepositoryProxy<T, K> {
public abstract class BaseSemiStructuredRepository<T, K> extends AbstractRepositoryProxy<T, K> {

private static final SelectQueryParser SELECT_PARSER = new SelectQueryParser();

Expand Down

0 comments on commit 1b8d758

Please sign in to comment.