Updating EasyB plugin missing function
So I am trying to update the easyb plugin to intellij 12.1 however it seems that a few versions ago that .getFilesFromAllModules was removed. I was curious if anyone knew what it was replaced with or what would be the best way to re-write this function.
private VirtualFile[] getProjectClasspath() {
return ProjectRootManager.getInstance(module.getProject())
.getFilesFromAllModules(OrderRootType.CLASSES_AND_OUTPUT);
Please sign in to leave a comment.
Hi Zack,
Here is the link to OrderRootType.CLASSES_AND_OUTPUT before it has been removed:
Denis