Skip to content
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

Remove ShadowJar MetaClass implementation. Fix for gradle 5.2 #456

Merged
merged 1 commit into from
Feb 28, 2019
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -347,31 +347,4 @@ public DependencyFilter getDependencyFilter() {
public void setDependencyFilter(DependencyFilter filter) {
this.dependencyFilter = filter;
}

// This code is only to make IntelliJ happy.
private transient MetaClass metaClass = InvokerHelper.getMetaClass(this.getClass());

public Object getProperty(String property) {
return this.getMetaClass().getProperty(this, property);
}

public void setProperty(String property, Object newValue) {
this.getMetaClass().setProperty(this, property, newValue);
}

public Object invokeMethod(String name, Object args) {
return this.getMetaClass().invokeMethod(this, name, args);
}

public MetaClass getMetaClass() {
if(this.metaClass == null) {
this.metaClass = InvokerHelper.getMetaClass(this.getClass());
}

return this.metaClass;
}

public void setMetaClass(MetaClass metaClass) {
this.metaClass = metaClass;
}
}