From 9b0d8e81a125f30b236011dab0782638525c6359 Mon Sep 17 00:00:00 2001 From: Alex Osborne Date: Thu, 17 Oct 2024 10:34:52 +0900 Subject: [PATCH] Fix JDK 8 javadoc build errors --- pom.xml | 8 ++++---- src/main/java/com/anotherbigidea/flash/movie/Button.java | 4 ++-- src/main/java/com/anotherbigidea/flash/movie/Movie.java | 2 +- .../java/com/anotherbigidea/flash/movie/MovieClip.java | 2 +- .../java/com/anotherbigidea/flash/movie/TimeLine.java | 2 +- .../java/com/anotherbigidea/flash/structs/SoundInfo.java | 2 +- src/main/java/com/anotherbigidea/util/Base64.java | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pom.xml b/pom.xml index 6aff5c6..f87e95c 100644 --- a/pom.xml +++ b/pom.xml @@ -1,10 +1,9 @@ - + 4.0.0 org.netpreserve javaswf - 2.0.1-SNAPSHOT + 2.0.1 jar JavaSWF JavaSWF2 is a set of Java packages that enable the parsing, manipulation and generation of the @@ -25,7 +24,8 @@ https://github.com/iipc/javaswf scm:git:https://github.com/iipc/javaswf.git scm:git:git@github.com:iipc/javaswf.git - + v2.0.1 + diff --git a/src/main/java/com/anotherbigidea/flash/movie/Button.java b/src/main/java/com/anotherbigidea/flash/movie/Button.java index 611f00b..c399c83 100644 --- a/src/main/java/com/anotherbigidea/flash/movie/Button.java +++ b/src/main/java/com/anotherbigidea/flash/movie/Button.java @@ -78,7 +78,7 @@ public static class Layer public void usedForOver ( boolean f ) { usedForOver = f; } /** - * @param depth should be >= 1 and there should only be one symbol on any layer + * @param depth should be >= 1 and there should only be one symbol on any layer */ public Layer( Symbol symbol, Transform matrix, AlphaTransform cxform, int depth, boolean usedForHitArea, boolean usedForUp, @@ -139,7 +139,7 @@ public Button( boolean trackAsMenu ) /** * Add a layer to the button. - * @param depth should be >= 1 and there should only be one symbol on any layer + * @param depth should be >= 1 and there should only be one symbol on any layer */ public Button.Layer addLayer( Symbol symbol, Transform matrix, AlphaTransform cxform, diff --git a/src/main/java/com/anotherbigidea/flash/movie/Movie.java b/src/main/java/com/anotherbigidea/flash/movie/Movie.java index 5334804..1077407 100644 --- a/src/main/java/com/anotherbigidea/flash/movie/Movie.java +++ b/src/main/java/com/anotherbigidea/flash/movie/Movie.java @@ -163,7 +163,7 @@ public int getAvailableDepth() /** * Set the next available depth in the timeline - * @param depth must be >= 1 + * @param depth must be >= 1 */ public void setAvailableDepth( int depth ) { diff --git a/src/main/java/com/anotherbigidea/flash/movie/MovieClip.java b/src/main/java/com/anotherbigidea/flash/movie/MovieClip.java index 15465b8..c0699f6 100644 --- a/src/main/java/com/anotherbigidea/flash/movie/MovieClip.java +++ b/src/main/java/com/anotherbigidea/flash/movie/MovieClip.java @@ -116,7 +116,7 @@ public int getAvailableDepth() /** * Set the next available depth in the timeline - * @param depth must be >= 1 + * @param depth must be >= 1 */ public void setAvailableDepth( int depth ) { diff --git a/src/main/java/com/anotherbigidea/flash/movie/TimeLine.java b/src/main/java/com/anotherbigidea/flash/movie/TimeLine.java index 909f52d..9d5376a 100644 --- a/src/main/java/com/anotherbigidea/flash/movie/TimeLine.java +++ b/src/main/java/com/anotherbigidea/flash/movie/TimeLine.java @@ -64,7 +64,7 @@ public interface TimeLine /** * Set the next available depth in the timeline - * @param depth must be >= 1 + * @param depth must be >= 1 */ public void setAvailableDepth( int depth ); } diff --git a/src/main/java/com/anotherbigidea/flash/structs/SoundInfo.java b/src/main/java/com/anotherbigidea/flash/structs/SoundInfo.java index 784d646..d2b54b8 100644 --- a/src/main/java/com/anotherbigidea/flash/structs/SoundInfo.java +++ b/src/main/java/com/anotherbigidea/flash/structs/SoundInfo.java @@ -72,7 +72,7 @@ public EnvelopePoint( int mark44, int level0, int level1 ) * @param envelope may be null or empty for no envelope * @param inPoint -1 for no in-point * @param outPoint -1 for no out-point - * @param loopCount >1 for a loop count + * @param loopCount >1 for a loop count */ public SoundInfo( boolean noMultiplePlay, boolean stopSound, EnvelopePoint[] envelope, diff --git a/src/main/java/com/anotherbigidea/util/Base64.java b/src/main/java/com/anotherbigidea/util/Base64.java index 4de5c26..360c6cc 100644 --- a/src/main/java/com/anotherbigidea/util/Base64.java +++ b/src/main/java/com/anotherbigidea/util/Base64.java @@ -242,7 +242,7 @@ public static String encode( byte[] data, int start, int length ) } /** - * If args.length > 0 then encode binary on stdin to base64 on stdout, else + * If args.length > 0 then encode binary on stdin to base64 on stdout, else * decode base64 on stdin to binary on stdout */ public static void main( String[] args ) throws Exception