Skip to content

Commit cd0eb24

Browse files
authored
ParticleInfluencer: removed redundant clonable interface
JmeCloneable already extends the Cloneable interface so you can remove it
1 parent 5d3bdff commit cd0eb24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jme3-core/src/main/java/com/jme3/effect/influencers/ParticleInfluencer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009-2018 jMonkeyEngine
2+
* Copyright (c) 2009-2025 jMonkeyEngine
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without
@@ -42,7 +42,7 @@
4242
* An interface that defines the methods to affect initial velocity of the particles.
4343
* @author Marcin Roguski (Kaelthas)
4444
*/
45-
public interface ParticleInfluencer extends Savable, Cloneable, JmeCloneable {
45+
public interface ParticleInfluencer extends Savable, JmeCloneable {
4646

4747
/**
4848
* This method influences the particle.
@@ -57,7 +57,7 @@ public interface ParticleInfluencer extends Savable, Cloneable, JmeCloneable {
5757
* This method clones the influencer instance.
5858
* @return cloned instance
5959
*/
60-
public ParticleInfluencer clone();
60+
ParticleInfluencer clone();
6161

6262
/**
6363
* @param initialVelocity

0 commit comments

Comments
 (0)