mirror of
https://github.com/github/codeql.git
synced 2026-06-13 17:01:10 +02:00
Remove library annotations
This commit is contained in:
@@ -140,7 +140,7 @@ class NamespaceClass extends RefType {
|
||||
* This represents the set of classes and interfaces for which we will determine liveness. Each
|
||||
* `SourceClassOrInterfacce` will either be a `LiveClass` or `DeadClass`.
|
||||
*/
|
||||
library class SourceClassOrInterface extends ClassOrInterface {
|
||||
class SourceClassOrInterface extends ClassOrInterface {
|
||||
SourceClassOrInterface() { this.fromSource() }
|
||||
}
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import semmle.code.java.frameworks.jackson.JacksonSerializability
|
||||
*
|
||||
* This defines the set of fields for which we will determine liveness.
|
||||
*/
|
||||
library class SourceField extends Field {
|
||||
class SourceField extends Field {
|
||||
SourceField() { this.fromSource() }
|
||||
}
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@ abstract class ReflectivelyConstructedClass extends EntryPoint, Class {
|
||||
/**
|
||||
* Classes that are deserialized by Jackson are reflectively constructed.
|
||||
*/
|
||||
library class JacksonReflectivelyConstructedClass extends ReflectivelyConstructedClass instanceof JacksonDeserializableType
|
||||
class JacksonReflectivelyConstructedClass extends ReflectivelyConstructedClass instanceof JacksonDeserializableType
|
||||
{
|
||||
override Callable getALiveCallable() {
|
||||
// Constructors may be called by Jackson, if they are a no-arg, they have a suitable annotation,
|
||||
|
||||
Reference in New Issue
Block a user