Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#277: Fix JavaDoc Errors preventing its generation #278

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -225,14 +225,13 @@ public String substring(Span s)
}

/**
* <font color="#ff0000">This function is not implemented !!!</font>
* Note: This function is not implemented!
*/
public CharSequence subSequence(int start, int end)
{
// TODO Implementieren
System.err.println("CharSequence subSequence(int start, int end)\nSorry, not Implemented");
sb.charAt(-1); // causes an error
return null;
throw new UnsupportedOperationException("CharSequence subSequence(int start, int end) "
+ "- Sorry, not implemented!");
}

public int length()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import org.dkpro.jwpl.revisionmachine.common.exceptions.EncodingException;
import org.dkpro.jwpl.revisionmachine.common.exceptions.ErrorFactory;
import org.dkpro.jwpl.revisionmachine.common.exceptions.ErrorKeys;
import org.dkpro.jwpl.revisionmachine.common.exceptions.LoggingException;
import org.dkpro.jwpl.revisionmachine.common.exceptions.SQLConsumerException;
import org.dkpro.jwpl.revisionmachine.common.logging.Logger;
import org.dkpro.jwpl.revisionmachine.common.logging.messages.consumer.ConsumerLogMessages;
Expand Down Expand Up @@ -118,8 +117,6 @@ public class SQLEncoder
* Reference to the logger
* @throws ConfigurationException
* if an error occurred while accessing the configuration
* @throws LoggingException
* if an error occurred while accessing the logger
*/
public SQLEncoder(final Logger logger) throws ConfigurationException
{
Expand Down