summaryrefslogtreecommitdiffstats
path: root/src/de/fernflower/struct/consts
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/fernflower/struct/consts')
-rw-r--r--src/de/fernflower/struct/consts/ConstantPool.java14
-rw-r--r--src/de/fernflower/struct/consts/LinkConstant.java2
-rw-r--r--src/de/fernflower/struct/consts/PooledConstant.java4
-rw-r--r--src/de/fernflower/struct/consts/PrimitiveConstant.java2
-rw-r--r--src/de/fernflower/struct/consts/VariableTypeEnum.java2
5 files changed, 12 insertions, 12 deletions
diff --git a/src/de/fernflower/struct/consts/ConstantPool.java b/src/de/fernflower/struct/consts/ConstantPool.java
index c1d6976..8951cd1 100644
--- a/src/de/fernflower/struct/consts/ConstantPool.java
+++ b/src/de/fernflower/struct/consts/ConstantPool.java
@@ -12,7 +12,7 @@
* A PARTICULAR PURPOSE.
*/
-package de.fernflower.struct.consts;
+package org.jetbrains.java.decompiler.struct.consts;
import java.io.DataInputStream;
import java.io.DataOutputStream;
@@ -21,12 +21,12 @@ import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
-import de.fernflower.code.CodeConstants;
-import de.fernflower.main.DecompilerContext;
-import de.fernflower.modules.renamer.PoolInterceptor;
-import de.fernflower.struct.gen.FieldDescriptor;
-import de.fernflower.struct.gen.MethodDescriptor;
-import de.fernflower.struct.gen.VarType;
+import org.jetbrains.java.decompiler.code.CodeConstants;
+import org.jetbrains.java.decompiler.main.DecompilerContext;
+import org.jetbrains.java.decompiler.modules.renamer.PoolInterceptor;
+import org.jetbrains.java.decompiler.struct.gen.FieldDescriptor;
+import org.jetbrains.java.decompiler.struct.gen.MethodDescriptor;
+import org.jetbrains.java.decompiler.struct.gen.VarType;
public class ConstantPool {
diff --git a/src/de/fernflower/struct/consts/LinkConstant.java b/src/de/fernflower/struct/consts/LinkConstant.java
index 66d6531..770a5e3 100644
--- a/src/de/fernflower/struct/consts/LinkConstant.java
+++ b/src/de/fernflower/struct/consts/LinkConstant.java
@@ -12,7 +12,7 @@
* A PARTICULAR PURPOSE.
*/
-package de.fernflower.struct.consts;
+package org.jetbrains.java.decompiler.struct.consts;
import java.io.DataOutputStream;
import java.io.IOException;
diff --git a/src/de/fernflower/struct/consts/PooledConstant.java b/src/de/fernflower/struct/consts/PooledConstant.java
index aab1091..ae46604 100644
--- a/src/de/fernflower/struct/consts/PooledConstant.java
+++ b/src/de/fernflower/struct/consts/PooledConstant.java
@@ -12,12 +12,12 @@
* A PARTICULAR PURPOSE.
*/
-package de.fernflower.struct.consts;
+package org.jetbrains.java.decompiler.struct.consts;
import java.io.DataOutputStream;
import java.io.IOException;
-import de.fernflower.code.CodeConstants;
+import org.jetbrains.java.decompiler.code.CodeConstants;
/*
cp_info {
diff --git a/src/de/fernflower/struct/consts/PrimitiveConstant.java b/src/de/fernflower/struct/consts/PrimitiveConstant.java
index 0532822..f01a695 100644
--- a/src/de/fernflower/struct/consts/PrimitiveConstant.java
+++ b/src/de/fernflower/struct/consts/PrimitiveConstant.java
@@ -12,7 +12,7 @@
* A PARTICULAR PURPOSE.
*/
-package de.fernflower.struct.consts;
+package org.jetbrains.java.decompiler.struct.consts;
import java.io.DataOutputStream;
import java.io.IOException;
diff --git a/src/de/fernflower/struct/consts/VariableTypeEnum.java b/src/de/fernflower/struct/consts/VariableTypeEnum.java
index 22758b7..fc58c7e 100644
--- a/src/de/fernflower/struct/consts/VariableTypeEnum.java
+++ b/src/de/fernflower/struct/consts/VariableTypeEnum.java
@@ -12,7 +12,7 @@
* A PARTICULAR PURPOSE.
*/
-package de.fernflower.struct.consts;
+package org.jetbrains.java.decompiler.struct.consts;
public interface VariableTypeEnum {