You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so, e.g. if it tries to save reflection data of org.reflections.MyTestModelStore to /var/tmp/portage/dev-java/reflections-0.9.16-r6/work/reflections-0.9.16/src/test/java/org/reflections/MyTestModelStore.java
it would instead save it to /var/tmp/portage/dev-java/reflections-0/9/12-r6/work/reflections-0/9/12/src/test/java/org/reflections/MyTestModelStore.java
which is incorrect.
Elaborating: That line replaces all the dots in the path string with slashes, because it expects that only classname at the end of the name contains dots. Assumption that is proven incorrect when given absolute path with dots in it.
reflections/src/main/java/org/reflections/serializers/JavaCodeSerializer.java
Line 73 in f5514b1
so, e.g. if it tries to save reflection data of
org.reflections.MyTestModelStore
to/var/tmp/portage/dev-java/reflections-0.9.16-r6/work/reflections-0.9.16/src/test/java/org/reflections/MyTestModelStore.java
it would instead save it to
/var/tmp/portage/dev-java/reflections-0/9/12-r6/work/reflections-0/9/12/src/test/java/org/reflections/MyTestModelStore.java
which is incorrect.
Found in Gentoo:
https://bugs.gentoo.org/949232
The text was updated successfully, but these errors were encountered: