summaryrefslogtreecommitdiffstats
path: root/src/org/jetbrains/java/decompiler/struct/gen/generics/GenericType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/jetbrains/java/decompiler/struct/gen/generics/GenericType.java')
-rw-r--r--src/org/jetbrains/java/decompiler/struct/gen/generics/GenericType.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/jetbrains/java/decompiler/struct/gen/generics/GenericType.java b/src/org/jetbrains/java/decompiler/struct/gen/generics/GenericType.java
index 61d07a0..160a0ac 100644
--- a/src/org/jetbrains/java/decompiler/struct/gen/generics/GenericType.java
+++ b/src/org/jetbrains/java/decompiler/struct/gen/generics/GenericType.java
@@ -105,7 +105,7 @@ public class GenericType {
}
}
- private String getNextClassSignature(String value) {
+ private static String getNextClassSignature(String value) {
int counter = 0;
int index = 0;
@@ -131,7 +131,7 @@ public class GenericType {
return value.substring(0, index);
}
- private void parseArgumentsList(String value, GenericType type) {
+ private static void parseArgumentsList(String value, GenericType type) {
if (value == null) {
return;
@@ -214,7 +214,7 @@ public class GenericType {
return value.substring(0, index + 1);
}
- private int getType(char c) {
+ private static int getType(char c) {
switch (c) {
case 'B':
return CodeConstants.TYPE_BYTE;