Skip to content

Commit

Permalink
Fix JDK 8 javadoc build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ato committed Oct 17, 2024
1 parent 6db22b2 commit 9b0d8e8
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.netpreserve</groupId>
<artifactId>javaswf</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>2.0.1</version>
<packaging>jar</packaging>
<name>JavaSWF</name>
<description>JavaSWF2 is a set of Java packages that enable the parsing, manipulation and generation of the
Expand All @@ -25,7 +24,8 @@
<url>https://github.com/iipc/javaswf</url>
<connection>scm:git:https://github.com/iipc/javaswf.git</connection>
<developerConnection>scm:git:[email protected]:iipc/javaswf.git</developerConnection>
</scm>
<tag>v2.0.1</tag>
</scm>

<developers>
<developer>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/anotherbigidea/flash/movie/Button.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 &gt;= 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,
Expand Down Expand Up @@ -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 &gt;= 1 and there should only be one symbol on any layer
*/
public Button.Layer addLayer( Symbol symbol, Transform matrix,
AlphaTransform cxform,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anotherbigidea/flash/movie/Movie.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public int getAvailableDepth()

/**
* Set the next available depth in the timeline
* @param depth must be >= 1
* @param depth must be &gt;= 1
*/
public void setAvailableDepth( int depth )
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public int getAvailableDepth()

/**
* Set the next available depth in the timeline
* @param depth must be >= 1
* @param depth must be &gt;= 1
*/
public void setAvailableDepth( int depth )
{
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anotherbigidea/flash/movie/TimeLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public interface TimeLine

/**
* Set the next available depth in the timeline
* @param depth must be >= 1
* @param depth must be &gt;= 1
*/
public void setAvailableDepth( int depth );
}
Original file line number Diff line number Diff line change
Expand Up @@ -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 &gt;1 for a loop count
*/
public SoundInfo( boolean noMultiplePlay, boolean stopSound,
EnvelopePoint[] envelope,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anotherbigidea/util/Base64.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 &gt; 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
Expand Down

0 comments on commit 9b0d8e8

Please sign in to comment.