Skip to content

Commit

Permalink
remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
kelloggm committed Nov 21, 2023
1 parent 7ad4b83 commit 0254a20
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1246,9 +1246,6 @@ public static boolean calledByAnIncompleteSyntheticClass(MethodCallExpr method)
* @param missedClass the class to be updated
*/
public void updateMissingClass(UnsolvedClass missedClass) {
if (missedClass.getClassName().equals("T")) {
throw new RuntimeException("shouldn't be updating T as a missing class!");
}
Iterator<UnsolvedClass> iterator = missingClass.iterator();
while (iterator.hasNext()) {
UnsolvedClass e = iterator.next();
Expand Down Expand Up @@ -1325,9 +1322,6 @@ public void deleteOldSyntheticClass(UnsolvedClass missedClass) {
* @param missedClass the class to be added
*/
public void createMissingClass(UnsolvedClass missedClass) {
if (missedClass.getClassName().equals("T")) {
throw new RuntimeException("probably shouldn't be creating this one");
}
StringBuilder fileContent = new StringBuilder();
fileContent.append(missedClass);
String classPackage = missedClass.getPackageName();
Expand Down

0 comments on commit 0254a20

Please sign in to comment.