(self)
| 92 | |
| 93 | @property |
| 94 | def name(self) -> str: |
| 95 | return re.findall(b"([a-zA-Z0-9]*)\.java", self.__raw)[0].decode() |
| 96 | |
| 97 | def inject(self, payload: Union[str, bytes]): |
| 98 | if isinstance(payload, str): |
nothing calls this directly
no outgoing calls
no test coverage detected