if (kerning) {
int kern = 0;
if (offset > 0) {
- int previousChar = java.lang.Character.codePointAt(ics, offset - 1);
+ int previousChar = Character.codePointAt(ics, offset - 1);
kern = font.getKernValue(previousChar, currentChar);
} else if (precedingChar != 0) {
kern = font.getKernValue(precedingChar, currentChar);
&& endsWithHyphen) {
int endChar = text.charAt(endIndex - 1);
- if (java.lang.Character.isLowSurrogate((char) endChar)) {
+ if (Character.isLowSurrogate((char) endChar)) {
char highSurrogate = text.charAt(endIndex - 2);
- endChar = java.lang.Character.toCodePoint(highSurrogate, (char) endChar);
+ endChar = Character.toCodePoint(highSurrogate, (char) endChar);
}
int kern = font.getKernValue(endChar, (int) breakOpportunityChar);
// Also add winAnsiWidth.
List<Integer> ansiIndexes = null;
- if (charCodeL <= java.lang.Character.MAX_VALUE) {
+ if (charCodeL <= Character.MAX_VALUE) {
ansiIndexes = ansiIndex.get((int) charCodeL);
}
new Thread(outputRedirector).start();
process.waitFor();
- } catch (java.lang.InterruptedException ie) {
+ } catch (InterruptedException ie) {
throw new IOException("The call to the external converter failed: " + ie.getMessage());
} catch (java.io.IOException ioe) {
throw new IOException("The call to the external converter failed: " + ioe.getMessage());
/**
* @see org.xml.sax.XMLReader#getProperty(String)
*/
- public Object getProperty(java.lang.String name) {
+ public Object getProperty(String name) {
return null;
}
/**
* @see org.xml.sax.XMLReader#setProperty(String, Object)
*/
- public void setProperty(java.lang.String name, java.lang.Object value) {
+ public void setProperty(String name, Object value) {
}
/**
* @see org.xml.sax.XMLReader#getFeature(String)
*/
- public boolean getFeature(java.lang.String name) {
+ public boolean getFeature(String name) {
return (Boolean) features.get(name);
}
/**
* @see org.xml.sax.XMLReader#setFeature(String, boolean)
*/
- public void setFeature(java.lang.String name, boolean value) {
+ public void setFeature(String name, boolean value) {
this.features.put(name, value);
}