Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
Randgalt committed Mar 31, 2024
1 parent 8e47252 commit 9f05e46
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,12 @@ private boolean processRecordInterface(TypeElement element, boolean addRecordBui
StandardLocation.SOURCE_OUTPUT);
boolean b2 = deletePossibleClassFile(actualPackageName,
ifaceClassType.name() + metaData.interfaceSuffix() + metaData.suffix(), StandardLocation.SOURCE_OUTPUT);
/*
boolean b3 = deletePossibleClassFile(actualPackageName, ifaceClassType.name() + metaData.interfaceSuffix(), StandardLocation.CLASS_OUTPUT);
boolean b4 = deletePossibleClassFile(actualPackageName, ifaceClassType.name() + metaData.interfaceSuffix() + metaData.suffix(), StandardLocation.CLASS_OUTPUT);
*/

return b1 || b2 || b3 || b4;
return b1 || b2;// || b3 || b4;
}

private boolean deletePossibleClassFile(String packageName, String className, StandardLocation location) {
Expand Down

0 comments on commit 9f05e46

Please sign in to comment.