Skip to content

Commit

Permalink
Eclipse 4.18 (RC2) JDT Patch for Groovy-Eclipse: JDT commit 92d33b4
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-milles committed Dec 4, 2020
1 parent 5200dce commit 9ff4bc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2009-2019 the original author or authors.
* Copyright 2009-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -61,12 +61,12 @@ public void configure(ProjectConfigurationRequest request, IProgressMonitor moni
}

@Override
public void configureClasspath(IMavenProjectFacade facade, IClasspathDescriptor classpath, IProgressMonitor monitor) throws CoreException {
public void configureClasspath(IMavenProjectFacade facade, IClasspathDescriptor classpath, IProgressMonitor monitor) {
// nothing to add to the Maven Dependencies container
}

@Override
public void configureRawClasspath(ProjectConfigurationRequest request, IClasspathDescriptor classpath, IProgressMonitor monitor) throws CoreException {
public void configureRawClasspath(ProjectConfigurationRequest request, IClasspathDescriptor classpath, IProgressMonitor monitor) {
ProjectSourceType sourceType = ProjectSourceType.getSourceType(request.getMavenProjectFacade());
if (sourceType != null) {
if (isAbsent(classpath, DSLD_CONTAINER_ID) && isAddDslSupport()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</license>

<requires>
<import feature="org.eclipse.jdt" version="3.18.600.v20201125-1800" patch="true"/>
<import feature="org.eclipse.jdt" version="3.18.600.v20201202-1800" patch="true"/>
</requires>

<plugin
Expand Down

0 comments on commit 9ff4bc6

Please sign in to comment.