Skip to content

Commit 9b0d8e8

Browse files
committed
Fix JDK 8 javadoc build errors
1 parent 6db22b2 commit 9b0d8e8

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<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">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>org.netpreserve</groupId>
65
<artifactId>javaswf</artifactId>
7-
<version>2.0.1-SNAPSHOT</version>
6+
<version>2.0.1</version>
87
<packaging>jar</packaging>
98
<name>JavaSWF</name>
109
<description>JavaSWF2 is a set of Java packages that enable the parsing, manipulation and generation of the
@@ -25,7 +24,8 @@
2524
<url>https://github.com/iipc/javaswf</url>
2625
<connection>scm:git:https://github.com/iipc/javaswf.git</connection>
2726
<developerConnection>scm:git:[email protected]:iipc/javaswf.git</developerConnection>
28-
</scm>
27+
<tag>v2.0.1</tag>
28+
</scm>
2929

3030
<developers>
3131
<developer>

src/main/java/com/anotherbigidea/flash/movie/Button.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static class Layer
7878
public void usedForOver ( boolean f ) { usedForOver = f; }
7979

8080
/**
81-
* @param depth should be >= 1 and there should only be one symbol on any layer
81+
* @param depth should be &gt;= 1 and there should only be one symbol on any layer
8282
*/
8383
public Layer( Symbol symbol, Transform matrix, AlphaTransform cxform,
8484
int depth, boolean usedForHitArea, boolean usedForUp,
@@ -139,7 +139,7 @@ public Button( boolean trackAsMenu )
139139

140140
/**
141141
* Add a layer to the button.
142-
* @param depth should be >= 1 and there should only be one symbol on any layer
142+
* @param depth should be &gt;= 1 and there should only be one symbol on any layer
143143
*/
144144
public Button.Layer addLayer( Symbol symbol, Transform matrix,
145145
AlphaTransform cxform,

src/main/java/com/anotherbigidea/flash/movie/Movie.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public int getAvailableDepth()
163163

164164
/**
165165
* Set the next available depth in the timeline
166-
* @param depth must be >= 1
166+
* @param depth must be &gt;= 1
167167
*/
168168
public void setAvailableDepth( int depth )
169169
{

src/main/java/com/anotherbigidea/flash/movie/MovieClip.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public int getAvailableDepth()
116116

117117
/**
118118
* Set the next available depth in the timeline
119-
* @param depth must be >= 1
119+
* @param depth must be &gt;= 1
120120
*/
121121
public void setAvailableDepth( int depth )
122122
{

src/main/java/com/anotherbigidea/flash/movie/TimeLine.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public interface TimeLine
6464

6565
/**
6666
* Set the next available depth in the timeline
67-
* @param depth must be >= 1
67+
* @param depth must be &gt;= 1
6868
*/
6969
public void setAvailableDepth( int depth );
7070
}

src/main/java/com/anotherbigidea/flash/structs/SoundInfo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public EnvelopePoint( int mark44, int level0, int level1 )
7272
* @param envelope may be null or empty for no envelope
7373
* @param inPoint -1 for no in-point
7474
* @param outPoint -1 for no out-point
75-
* @param loopCount >1 for a loop count
75+
* @param loopCount &gt;1 for a loop count
7676
*/
7777
public SoundInfo( boolean noMultiplePlay, boolean stopSound,
7878
EnvelopePoint[] envelope,

src/main/java/com/anotherbigidea/util/Base64.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public static String encode( byte[] data, int start, int length )
242242
}
243243

244244
/**
245-
* If args.length > 0 then encode binary on stdin to base64 on stdout, else
245+
* If args.length &gt; 0 then encode binary on stdin to base64 on stdout, else
246246
* decode base64 on stdin to binary on stdout
247247
*/
248248
public static void main( String[] args ) throws Exception

0 commit comments

Comments
 (0)