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.
2 parents e9d8837 + cc02b5c commit ecca8f5Copy full SHA for ecca8f5
1 file changed
src/main/java/dev/themeinerlp/plugindebug/DebugBuilder.java
@@ -60,7 +60,7 @@ public T addFile(Path filePath, FileType fileType, String uiTabName) {
60
* @param text to collect into the zip
61
* @param uiTabName to display tn the frontend
62
*/
63
- public T addTest(String text, String uiTabName) throws IOException {
+ public T addText(String text, String uiTabName) throws IOException {
64
var textFile = Files.createTempFile(tempFile, ".txt");
65
try (OutputStreamWriter writer = new OutputStreamWriter(Files.newOutputStream(textFile))) {
66
writer.append(text);
0 commit comments