mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 01:40:47 +00:00
Fix missing javadoc parameters, throw tags,...
This commit is contained in:
@@ -1668,7 +1668,7 @@ public class Helper {
|
||||
/**
|
||||
* Formats double value (removes .0 from end)
|
||||
*
|
||||
* @param d
|
||||
* @param d Double value
|
||||
* @return String
|
||||
*/
|
||||
public static String doubleStr(double d) {
|
||||
|
||||
@@ -29,7 +29,7 @@ public interface Searchable {
|
||||
/**
|
||||
* Searches for byte sequences
|
||||
*
|
||||
* @param data
|
||||
* @param data Data
|
||||
* @return Map Position=>Input stream
|
||||
*/
|
||||
public Map<Long, InputStream> search(byte[]... data);
|
||||
@@ -38,7 +38,7 @@ public interface Searchable {
|
||||
* Searches for byte sequences with progress listener
|
||||
*
|
||||
* @param progListener Listener
|
||||
* @param data
|
||||
* @param data Data
|
||||
* @return Map Position=>Input stream
|
||||
*/
|
||||
public Map<Long, InputStream> search(ProgressListener progListener, byte[]... data);
|
||||
|
||||
@@ -49,8 +49,8 @@ public class CharSequenceJavaFileObject extends SimpleJavaFileObject {
|
||||
* Answers the CharSequence to be compiled. It will give the source code
|
||||
* stored in variable "content"
|
||||
*
|
||||
* @param ignoreEncodingErrors
|
||||
* @return
|
||||
* @param ignoreEncodingErrors Ignore encoding errors
|
||||
* @return CharSequence
|
||||
*/
|
||||
@Override
|
||||
public CharSequence getCharContent(boolean ignoreEncodingErrors) {
|
||||
|
||||
@@ -63,8 +63,8 @@ public class JavaClassObject extends SimpleJavaFileObject {
|
||||
* array. This way the compiler will write everything into the byte array
|
||||
* that we will instantiate later
|
||||
*
|
||||
* @return
|
||||
* @throws java.io.IOException
|
||||
* @return Output stream
|
||||
* @throws IOException On I/O error
|
||||
*/
|
||||
@Override
|
||||
public OutputStream openOutputStream() throws IOException {
|
||||
|
||||
@@ -90,10 +90,6 @@ public class Gb18030 extends AbstractCharsetConverter {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param codepoint
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public int toUnicode(int codepoint) {
|
||||
int result = 0;
|
||||
|
||||
Reference in New Issue
Block a user