aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java b/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java
index ee3b600a5..5add4f695 100644
--- a/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java
+++ b/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java
@@ -114,11 +114,11 @@ public interface TextureSequence {
* to associated related data.
*/
public static class TextureFrame extends TimeFrameI {
- public TextureFrame(Texture t, int pts, int duration) {
+ public TextureFrame(final Texture t, final int pts, final int duration) {
super(pts, duration);
texture = t;
}
- public TextureFrame(Texture t) {
+ public TextureFrame(final Texture t) {
texture = t;
}