We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44f4ad2 commit 40e57d6Copy full SHA for 40e57d6
byte-buddy-agent/src/main/java/net/bytebuddy/agent/Attacher.java
@@ -65,7 +65,7 @@ public static void main(String[] args) {
65
} catch (Throwable throwable) {
66
try {
67
String property = System.getProperty(DUMP_PROPERTY);
68
- if (property != null && !property.isEmpty()) {
+ if (property != null && property.length() > 0) {
69
PrintStream outputStream = new PrintStream(new FileOutputStream(property));
70
71
throwable.printStackTrace(outputStream);
0 commit comments