8000 Rename getPermittedSubtypes() to permittedSubclasses() to fix build by KengoTODA · Pull Request #6 · forax/amber-record · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Rename getPermittedSubtypes() to permittedSubclasses() to fix build #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
8000
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ services:
- docker

before_install:
- nvm install 14
- sudo apt-get install npm
- docker build -f docker/Dockerfile -t forax/amber-record .
- docker run -d -p 8888:8888 forax/amber-record bash travis/script.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ non-sealed static class A implements I {
public static void main(String[] args) {
I i = new A();

var permitted = I.class.getPermittedSubtypes();
var permitted = I.class.permittedSubclasses();
System.out.println(Arrays.toString(permitted));
}
}
0