Skip to content

Commit

Permalink
Moved remaining IBinding classes from types package to jdt.
Browse files Browse the repository at this point in the history
	Change on 2016/12/14 by tball <tball@google.com>

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=142025610
  • Loading branch information
tomball committed Dec 16, 2016
1 parent 6eac122 commit 6b59f72
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 10 deletions.
6 changes: 3 additions & 3 deletions translator/Makefile
Expand Up @@ -190,8 +190,11 @@ JAVA_SOURCES = \
javac/JavacParser.java \
javac/MemoryFileObject.java \
javac/TreeConverter.java \
jdt/AbstractBinding.java \
jdt/AbstractTypeBinding.java \
jdt/BindingConverter.java \
jdt/GeneratedMethodBinding.java \
jdt/GeneratedPackageBinding.java \
jdt/GeneratedTypeBinding.java \
jdt/GeneratedVariableBinding.java \
jdt/JdtAnnotationMirror.java \
Expand Down Expand Up @@ -262,15 +265,12 @@ JAVA_SOURCES = \
translate/UnsequencedExpressionRewriter.java \
translate/VarargsRewriter.java \
translate/VariableRenamer.java \
types/AbstractBinding.java \
types/AbstractTypeBinding.java \
types/AbstractTypeMirror.java \
types/ExecutablePair.java \
types/FunctionElement.java \
types/GeneratedArrayType.java \
types/GeneratedElement.java \
types/GeneratedExecutableElement.java \
types/GeneratedPackageBinding.java \
types/GeneratedPackageElement.java \
types/GeneratedTypeElement.java \
types/GeneratedVariableElement.java \
Expand Down
Expand Up @@ -12,7 +12,7 @@
* limitations under the License.
*/

package com.google.devtools.j2objc.types;
package com.google.devtools.j2objc.jdt;

import com.google.common.collect.Lists;
import java.util.Arrays;
Expand Down
Expand Up @@ -12,7 +12,7 @@
* limitations under the License.
*/

package com.google.devtools.j2objc.types;
package com.google.devtools.j2objc.jdt;

import org.eclipse.jdt.core.dom.IAnnotationBinding;
import org.eclipse.jdt.core.dom.IBinding;
Expand Down
Expand Up @@ -17,7 +17,6 @@
import com.google.devtools.j2objc.types.AbstractTypeMirror;
import com.google.devtools.j2objc.types.GeneratedElement;
import com.google.devtools.j2objc.types.GeneratedExecutableElement;
import com.google.devtools.j2objc.types.GeneratedPackageBinding;
import com.google.devtools.j2objc.types.GeneratedPackageElement;
import com.google.devtools.j2objc.types.GeneratedTypeElement;
import com.google.devtools.j2objc.types.GeneratedVariableElement;
Expand Down
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.devtools.j2objc.types;
package com.google.devtools.j2objc.jdt;

import org.eclipse.jdt.core.dom.IBinding;
import org.eclipse.jdt.core.dom.IPackageBinding;
Expand Down
Expand Up @@ -17,8 +17,6 @@
package com.google.devtools.j2objc.jdt;

import com.google.common.collect.Sets;
import com.google.devtools.j2objc.types.AbstractTypeBinding;
import com.google.devtools.j2objc.types.GeneratedPackageBinding;
import com.google.devtools.j2objc.util.BindingUtil;
import java.util.Set;
import javax.lang.model.element.PackageElement;
Expand Down
Expand Up @@ -14,7 +14,6 @@

package com.google.devtools.j2objc.jdt;

import com.google.devtools.j2objc.types.AbstractTypeBinding;
import java.lang.annotation.Annotation;
import java.util.Collections;
import java.util.List;
Expand Down

0 comments on commit 6b59f72

Please sign in to comment.