fix: move test class and rename GUI message (PR #555)
This commit is contained in:
+14
-13
@@ -13,7 +13,20 @@ import jadx.tests.api.IntegrationTest;
|
||||
import static jadx.tests.api.utils.JadxMatchers.containsOne;
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
|
||||
public class TryAfterDeclaration extends IntegrationTest {
|
||||
public class TestTryAfterDeclaration extends IntegrationTest {
|
||||
|
||||
static class TestClass {
|
||||
public static void consume() throws IOException {
|
||||
InputStream bis = null;
|
||||
try {
|
||||
bis = new FileInputStream("1.txt");
|
||||
while (bis != null) {
|
||||
System.out.println("c");
|
||||
}
|
||||
} catch (final IOException e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Issue #62.
|
||||
@@ -28,16 +41,4 @@ public class TryAfterDeclaration extends IntegrationTest {
|
||||
}
|
||||
}
|
||||
|
||||
class TestClass {
|
||||
public static void consume() throws IOException {
|
||||
InputStream bis = null;
|
||||
try {
|
||||
bis = new FileInputStream("1.txt");
|
||||
while (bis != null) {
|
||||
System.out.println("c");
|
||||
}
|
||||
} catch (final IOException e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -135,7 +135,7 @@ popup.exclude=Exclude
|
||||
confirm.save_as_title=Confirm Save as
|
||||
confirm.save_as_message=%s already exists.\nDo you want to replace it?
|
||||
confirm.not_saved_title=Save project
|
||||
confirm.not_saved_message=Save the current project before opening the new one?
|
||||
confirm.not_saved_message=Save the current project before proceeding?
|
||||
|
||||
certificate.title=Certificate
|
||||
certificate.cert_type=Type
|
||||
|
||||
Reference in New Issue
Block a user