Skip to content

Commit f6c4977

Browse files
authored
Fix Javadoc generation errors. (#62)
1 parent ca5461c commit f6c4977

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

src/main/java/org/bytedeco/javacv/Frame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ public <I extends Indexer> I createIndexer(boolean direct, int i) {
210210
* Cloning a frame containing a full HD picture (alpha channel included) would take 1920 x 1080 * 4 = 8.294.400 Bytes.
211211
* Expect a heap overflow exception when using this method without cleaning up.
212212
*
213+
* @see #cloneBufferArray
213214
* @return A deep copy of this frame.
214-
* @see {@link #cloneBufferArray}
215215
*
216216
* Extension proposed by Dragos Dutu
217217
* */

src/main/java/us/ihmc/publisher/logger/ui/LoggerDeployApplication.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ public LoggerDeployApplication(String loggerDist)
3535
/**
3636
* Helper function to open this as part of another application
3737
*
38-
* @param parameters Parameters from application start
38+
* @param loggerDistribution
39+
* @param deployScript
3940
* @param scene Parent scene
4041
*/
4142
public static void open(String loggerDistribution, LoggerDeployScript deployScript, Scene scene)

src/main/java/us/ihmc/robotDataLogger/interfaces/DataProducer.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
import java.io.IOException;
44

5-
import us.ihmc.robotDataLogger.Handshake;
6-
import us.ihmc.robotDataLogger.dataBuffers.CustomLogDataPublisherType;
75
import us.ihmc.robotDataLogger.dataBuffers.RegistrySendBufferBuilder;
86
import us.ihmc.robotDataLogger.websocket.server.DataServerServerContent;
97

@@ -17,7 +15,7 @@ public interface DataProducer
1715
/**
1816
* Set the handshake data Required
1917
*
20-
* @param handshake
18+
* @param dataServerServerContent
2119
*/
2220
void setDataServerContent(DataServerServerContent dataServerServerContent);
2321

@@ -33,7 +31,6 @@ public interface DataProducer
3331
* Publisher a timestamp update
3432
*
3533
* @param timestamp
36-
* @throws IOException
3734
*/
3835
void publishTimestamp(long timestamp);
3936

src/main/java/us/ihmc/robotDataLogger/websocket/client/discovery/HTTPDataServerConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public void connected(HTTPDataServerConnection connection)
154154
}
155155

156156
/**
157-
* Setup a new connection If you want a blocking connect call, use the static {@link connect()}
157+
* Setup a new connection If you want a blocking connect call, use the static {@link #connect}
158158
* function
159159
*
160160
* @param target

src/main/java/us/ihmc/tools/compression/CompressionImplementation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface CompressionImplementation
3838

3939
/**
4040
* Get the minimum size of the decompressed data Due to integer rounding, the following relation
41-
* holds length - 1 >= minimumDeCompressedLength(maxCompressedLength(int length)) <= length
41+
* holds {@code length - 1 >= minimumDeCompressedLength(maxCompressedLength(int length)) <= length}
4242
*
4343
* @return Minimum size of decompressed data
4444
*/

0 commit comments

Comments
 (0)