Skip to content

Commit 73ed9ed

Browse files
committed
Adapt to rename in core module.
1 parent cae4d4b commit 73ed9ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

junit/io/sf/carte/doc/style/css/awt/AWTStyleDatabaseTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import io.sf.carte.doc.style.css.CSSDocument;
3434
import io.sf.carte.doc.style.css.CSSElement;
3535
import io.sf.carte.doc.style.css.CSSMediaException;
36-
import io.sf.carte.doc.style.css.ExtendedCSSStyleSheet;
36+
import io.sf.carte.doc.style.css.CSSStyleSheet;
3737
import io.sf.carte.doc.style.css.LinkStyle;
3838
import io.sf.carte.doc.style.css.om.FontFaceRule;
3939
import io.sf.carte.doc.style.css.om.TestCSSStyleSheetFactory;
@@ -42,7 +42,7 @@ public class AWTStyleDatabaseTest {
4242

4343
private CSSDocument cssdoc;
4444
private Node styleText;
45-
private ExtendedCSSStyleSheet<?> sheet;
45+
private CSSStyleSheet<?> sheet;
4646
private AWTStyleDatabase styleDb;
4747

4848
@Before

src/io/sf/carte/doc/style/css/awt/AWTStyleDatabase.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
import org.w3c.dom.DOMException;
2424

25+
import io.sf.carte.doc.style.css.CSSFontFaceRule;
2526
import io.sf.carte.doc.style.css.CSSUnit;
26-
import io.sf.carte.doc.style.css.ExtendedCSSFontFaceRule;
2727
import io.sf.carte.doc.style.css.om.AbstractStyleDatabase;
2828

2929
/**
@@ -109,7 +109,7 @@ public boolean isFontFaceName(String requestedFamily) {
109109
}
110110

111111
@Override
112-
protected boolean loadFontFace(String familyName, FontFormat format, InputStream is, ExtendedCSSFontFaceRule rule)
112+
protected boolean loadFontFace(String familyName, FontFormat format, InputStream is, CSSFontFaceRule rule)
113113
throws IOException {
114114
int fontFormat;
115115
if (format == null || (fontFormat = fontFormatFromEnum(format)) == -1) {

0 commit comments

Comments
 (0)