Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/com/google/gwt/gen2/table/client/OverrideDOMImpl.java

Diff revisions: vs.
  @@ -22,15 +22,12 @@
22 22 * <p/>
23 23 * TODO: Incorporate into DOMImpl.
24 24 */
25 - public class OverrideDOMImpl
26 - {
27 - public Element createTD()
28 - {
25 + public class OverrideDOMImpl {
26 + public Element createTD() {
29 27 return DOM.createElement( "td" );
30 28 }
31 29
32 - public Element createTH()
33 - {
30 + public Element createTH() {
34 31 return DOM.createElement( "th" );
35 32 }
36 33
  @@ -41,8 +38,7 @@
41 38 *
42 39 * @return the cell index
43 40 */
44 - public int getCellIndex( Element td )
45 - {
41 + public int getCellIndex( Element td ) {
46 42 return DOM.getElementPropertyInt( td, "cellIndex" );
47 43 }
48 44 }