OnJava8-Examples
OnJava8-Examples copied to clipboard
I can't find the typeinfo package
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).
The package
typeinfowas renamed with commit ede3954 intoreflection(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.javain dfdbcf6).
thx, it's really helpful