Skip to content

Commit

Permalink
Stop using jface internal SingleCharReader
Browse files Browse the repository at this point in the history
Use the proper api from o.e.text
  • Loading branch information
akurtakov authored and fedejeanne committed Jul 31, 2024
1 parent ce43610 commit 3fbfe0a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import org.eclipse.jdt.core.IBuffer;
import org.eclipse.jdt.core.formatter.IndentManipulation;
import org.eclipse.jface.internal.text.html.SingleCharReader;
import org.eclipse.text.readers.SingleCharacterReader;

/**
* Reads a java doc comment from a java doc comment. Skips star-character
Expand All @@ -24,7 +24,7 @@
* XXX: copied from <code>org.eclipse.jdt.ui</code>.
* </p>
*/
public class JavaDocCommentReader extends SingleCharReader {
public class JavaDocCommentReader extends SingleCharacterReader {

private IBuffer fBuffer;

Expand Down

0 comments on commit 3fbfe0a

Please sign in to comment.