Skip to content

Commit cc02b5c

Browse files
committed
Fix method naming
1 parent 137ad26 commit cc02b5c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/dev/themeinerlp/plugindebug/DebugBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public T addFile(Path filePath, FileType fileType, String uiTabName) {
6060
* @param text to collect into the zip
6161
* @param uiTabName to display tn the frontend
6262
*/
63-
public T addTest(String text, String uiTabName) throws IOException {
63+
public T addText(String text, String uiTabName) throws IOException {
6464
var textFile = Files.createTempFile(tempFile, ".txt");
6565
try (OutputStreamWriter writer = new OutputStreamWriter(Files.newOutputStream(textFile))) {
6666
writer.append(text);

0 commit comments

Comments
 (0)