OnJava8-Examples icon indicating copy to clipboard operation
OnJava8-Examples copied to clipboard

I can't find the typeinfo package

Open blackHole2023 opened this issue 3 years ago • 2 comments

blackHole2023 avatar Oct 09 '22 11:10 blackHole2023

The package typeinfo was renamed with commit ede3954 into reflection (see the diff of ede3954).

If you are looking for something more specific in that package (which even before that commit might have been renamed) you could grep the git history for that information and start your investigation from that commit.

e.g. to search for term "PetCount.java" inside the tracked files

git rev-list --all | xargs git grep "PetCount.java"

which returns as top commit dfdbcf604f6ba4322b7463aff762736e313c47f0 (see PetCount.java in dfdbcf6).

SubOptimal avatar Oct 09 '22 20:10 SubOptimal

The package typeinfo was renamed with commit ede3954 into reflection (see the diff of ede3954).

If you are looking for something more specific in that package (which even before that commit might have been renamed) you could grep the git history for that information and start your investigation from that commit.

e.g. to search for term "PetCount.java" inside the tracked files

git rev-list --all | xargs git grep "PetCount.java"

which returns as top commit dfdbcf6 (see PetCount.java in dfdbcf6).

thx, it's really helpful

blackHole2023 avatar Oct 11 '22 02:10 blackHole2023