Skip to content

Commit e6e3671

Browse files
committed
code cleanup, removed dead code, starting reorg of azimuth (others to follow)
1 parent 592f41a commit e6e3671

File tree

96 files changed

+2416
-5694
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+2416
-5694
lines changed

org/w3c/css/css/StyleSheetCom.java

Lines changed: 0 additions & 285 deletions
This file was deleted.

org/w3c/css/index/TranslationTableGenerator.java

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,14 @@ public static synchronized void generateTable() {
109109
if (hy > 0) {
110110
String m = name.substring(0, hy);
111111
String s = name.substring(hy + 1);
112-
locale = new Locale(m, s, "");
112+
hy = s.indexOf("-");
113+
if (hy > 0) {
114+
String v = s.substring(hy + 1);
115+
s = s.substring(0, hy);
116+
locale = new Locale(m, s, v);
117+
} else {
118+
locale = new Locale(m, s, "");
119+
}
113120
} else {
114121
locale = new Locale(name);
115122
}
@@ -128,7 +135,7 @@ public static synchronized void generateTable() {
128135
Set properties_keyset = ac_default.getMsg().properties.keySet();
129136
sorted_properties_keys = new Vector<String>(properties_keyset);
130137
Collections.sort(sorted_properties_keys, new AlphaComparator());
131-
Iterator properties_iterator = sorted_properties_keys.iterator();
138+
Iterator<String> properties_iterator = sorted_properties_keys.iterator();
132139
translations_table.append("<tbody>");
133140
int num_properties = 0;
134141
while (properties_iterator.hasNext()) {

org/w3c/css/parser/CssPrinterStyle.java

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)