Merge pull request #1412 from eclipse/cd_cleanup

regenerated xtend code & cleanup imports
This commit is contained in:
Christian Dietrich 2020-03-06 06:13:47 +01:00 committed by GitHub
commit d62999c478
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -8,12 +8,12 @@
*/
package org.eclipse.xtext.ide.editor.bracketmatching;
import com.google.inject.Singleton;
import java.util.Collections;
import org.eclipse.xtext.ide.editor.bracketmatching.BracePair;
import org.eclipse.xtext.ide.editor.bracketmatching.DefaultBracePairProvider;
import org.eclipse.xtext.xbase.lib.CollectionLiterals;
import com.google.inject.Singleton;
/**
* @author kosyakov - Initial contribution and API
*/

View file

@ -8,8 +8,6 @@
*/
package org.eclipse.xtext.ide.server;
import org.eclipse.xtext.ide.server.ILanguageServerAccess;
/**
* Interface for language specific extensions to LSP. Implementors should use {@link JsonRpcNotification} and {@link
* JsonRpcRequest} annotations.

View file

@ -15,6 +15,7 @@ import org.eclipse.xtext.generator.trace.node.TracedProcessor;
* @author Sven Efftinge - Initial contribution and API
*/
@Active(TracedProcessor.class)
@SuppressWarnings("all")
public @interface Traced {
public String tracingSugarFieldName() default "_traceExtensions";
public boolean useForDebugging() default false;

View file

@ -16,6 +16,7 @@ import org.eclipse.xtext.generator.trace.node.TracedAccessorsProcessor;
* @author Sven Efftinge - Initial contribution and API
*/
@Active(TracedAccessorsProcessor.class)
@SuppressWarnings("all")
public @interface TracedAccessors {
public Class<? extends EFactory>[] value();
}