rename method from 'Clone' to 'clone' in 'Engine' class to match the java naming convention and definiont in the of java.lang.Object. (#268)

Co-authored-by: Cristi Balcanu <balcanu@amazon.com>
This commit is contained in:
balcanuc
2024-06-19 06:46:21 +03:00
committed by GitHub
parent 45627aa64a
commit e6f2ec825d

View File

@@ -60,7 +60,7 @@ public class Engine implements AutoCloseable, Cloneable {
/**
* Efficiently clones an Engine.
*/
public Engine Clone() {
public Engine clone() {
return new Engine(nativeClone(enginePtr));
}