Skip to content

Commit

Permalink
Make reset methods package-private
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo42 committed Aug 5, 2024
1 parent 52c3d44 commit 820ea3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private ClassLoader getDefaultClassLoader() {
return Thread.currentThread().getContextClassLoader();
}

public void reset() {
void reset() {
classpathElements.clear();
parentClassLoader = null;
cachedClassLoader = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public List<Class<? extends HasMetadata>> findCustomResourceClasses() {
/**
* Resets all internal states to defaults.
*/
public void reset() {
void reset() {
customResourceClassLoader.reset();
jandexCustomResourceClassScanner.reset();
customResourceClassNames.clear();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private Index createBaseIndex() {
}
}

public void reset() {
void reset() {
indices.clear();
filesToScan.clear();
forceIndex = false;
Expand Down

0 comments on commit 820ea3e

Please sign in to comment.