We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 399199c commit 50df25fCopy full SHA for 50df25f
1 file changed
cldk/models/java/models.py
@@ -291,7 +291,6 @@ class JType(BaseModel):
291
is_record_declaration: bool = False
292
is_concrete_class: bool = False
293
is_entry_point: bool = False
294
- is_modified: bool = False
295
comment: str
296
extends_list: List[str] = []
297
implements_list: List[str] = []
@@ -342,6 +341,7 @@ class JCompilationUnit(BaseModel):
342
341
343
imports: List[str]
344
type_declarations: Dict[str, JType]
+ is_modified: bool = False
345
346
347
class JMethodDetail(BaseModel):
0 commit comments