All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.newrelic.weave.violation.METHOD_NATIVE_UNSUPPORTED.md Maven / Gradle / Ivy

There is a newer version: 8.17.0
Show newest version
## METHOD_NATIVE_UNSUPPORTED ##

###Description###

This violation was raised because the @Weave class is attempting to match a native method.

###Example###

####Original Class####
```
public class Example {

    native void nativeMethod();

}
```


####Bad####
```
@Weave
public class Example {

    native void nativeMethod() {
        // This will fail
    }

}
```




© 2015 - 2024 Weber Informatics LLC | Privacy Policy