BruceEckel / OnJava8-Examples

Code Examples for the book "On Java 8"

Home Page:http://www.OnJava8.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I can't find the typeinfo package

blackHole2023 opened this issue · comments

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).

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