This is an automated email from the ASF dual-hosted git repository.
gregdove pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
The following commit(s) were added to refs/heads/develop by this push:
new eecf039 Tidy up: Add header, remove unused imports.
eecf039 is described below
commit eecf039f962d26719114b537bff11f47ea3d29cd
Author: greg-dove <[email protected]>
AuthorDate: Wed Feb 12 20:51:21 2020 +1300
Tidy up: Add header, remove unused imports.
---
.../problems/BindableGetterCodeGenProblem.java | 19 +++++++++++++++++++
.../problems/RedundantBindableTagProblem.java | 5 +----
2 files changed, 20 insertions(+), 4 deletions(-)
diff --git
a/compiler/src/main/java/org/apache/royale/compiler/problems/BindableGetterCodeGenProblem.java
b/compiler/src/main/java/org/apache/royale/compiler/problems/BindableGetterCodeGenProblem.java
index 512f13a..36ebad6 100644
---
a/compiler/src/main/java/org/apache/royale/compiler/problems/BindableGetterCodeGenProblem.java
+++
b/compiler/src/main/java/org/apache/royale/compiler/problems/BindableGetterCodeGenProblem.java
@@ -1,3 +1,22 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
package org.apache.royale.compiler.problems;
import org.apache.royale.compiler.definitions.IGetterDefinition;
diff --git
a/compiler/src/main/java/org/apache/royale/compiler/problems/RedundantBindableTagProblem.java
b/compiler/src/main/java/org/apache/royale/compiler/problems/RedundantBindableTagProblem.java
index 3fc91db..21acb87 100644
---
a/compiler/src/main/java/org/apache/royale/compiler/problems/RedundantBindableTagProblem.java
+++
b/compiler/src/main/java/org/apache/royale/compiler/problems/RedundantBindableTagProblem.java
@@ -19,12 +19,9 @@
package org.apache.royale.compiler.problems;
-import org.apache.royale.compiler.common.ISourceLocation;
-import org.apache.royale.compiler.common.SourceLocation;
-import org.apache.royale.compiler.definitions.IDefinition;
import org.apache.royale.compiler.problems.annotations.DefaultSeverity;
import org.apache.royale.compiler.tree.as.IASNode;
-import org.apache.royale.compiler.tree.as.IDefinitionNode;
+
/**
* Problem generated when code attempts to bind to something that isn't
bindable.