[matroska] r1195 - in trunk/JEBML/src/org/ebml: . matroska

[email protected] Fri, 27 May 2005 07:17:00 +0400 (MSD)
Newsgroups gmane.comp.multimedia.matroska.cvs
Message-ID <[email protected]>
Author: jcsston
Date: 2005-05-27 07:12:57 +0400 (Fri, 27 May 2005)
New Revision: 1195

Modified:
   trunk/JEBML/src/org/ebml/DateElement.java
   trunk/JEBML/src/org/ebml/ElementType.java
   trunk/JEBML/src/org/ebml/UnknownElementType.java
   trunk/JEBML/src/org/ebml/matroska/MatroskaBlock.java
   trunk/JEBML/src/org/ebml/matroska/MatroskaCluster.java
   trunk/JEBML/src/org/ebml/matroska/MatroskaDocType.java
Log:
Some minor changes to remove build warnings

Modified: trunk/JEBML/src/org/ebml/DateElement.java
===================================================================
--- trunk/JEBML/src/org/ebml/DateElement.java	2005-05-27 02:52:38 UTC (rev 1194)
+++ trunk/JEBML/src/org/ebml/DateElement.java	2005-05-27 03:12:57 UTC (rev 1195)
@@ -19,7 +19,6 @@
  */
 package org.ebml;
 
-import java.io.*;
 import java.util.*;
 
 public class DateElement extends SignedIntegerElement {

Modified: trunk/JEBML/src/org/ebml/ElementType.java
===================================================================
--- trunk/JEBML/src/org/ebml/ElementType.java	2005-05-27 02:52:38 UTC (rev 1194)
+++ trunk/JEBML/src/org/ebml/ElementType.java	2005-05-27 03:12:57 UTC (rev 1195)
@@ -19,7 +19,6 @@
  */
 package org.ebml;
 
-import org.ebml.util.*;
 import java.util.*;
 
 
@@ -90,31 +89,31 @@
   public Element createElement() {
     Element elem;
 
-    if (this.type == this.MASTER_ELEMENT) {
+    if (this.type == ElementType.MASTER_ELEMENT) {
       elem = new MasterElement(this.id);
 
-    } else if (this.type == this.BINARY_ELEMENT) {
+    } else if (this.type == ElementType.BINARY_ELEMENT) {
       elem = new BinaryElement(this.id);
 
-    } else if (this.type == this.STRING_ELEMENT) {
+    } else if (this.type == ElementType.STRING_ELEMENT) {
       elem = new StringElement(this.id);
 
-    } else if (this.type == this.ASCII_STRING_ELEMENT) {
+    } else if (this.type == ElementType.ASCII_STRING_ELEMENT) {
       elem = new StringElement(this.id, "US-ASCII");
 
-    } else if (this.type == this.SINTEGER_ELEMENT) {
+    } else if (this.type == ElementType.SINTEGER_ELEMENT) {
       elem = new SignedIntegerElement(this.id);
 
-    } else if (this.type == this.UINTEGER_ELEMENT) {
+    } else if (this.type == ElementType.UINTEGER_ELEMENT) {
       elem = new UnsignedIntegerElement(this.id);
 
-    } else if (this.type == this.FLOAT_ELEMENT) {
+    } else if (this.type == ElementType.FLOAT_ELEMENT) {
       elem = new FloatElement(this.id);
 
-    } else if (this.type == this.DATE_ELEMENT) {
+    } else if (this.type == ElementType.DATE_ELEMENT) {
       elem = new DateElement(this.id);
 
-    } else if (this.type == this.UNKNOWN_ELEMENT) {
+    } else if (this.type == ElementType.UNKNOWN_ELEMENT) {
       elem = new BinaryElement(this.id);
 
     } else {

Modified: trunk/JEBML/src/org/ebml/UnknownElementType.java
===================================================================
--- trunk/JEBML/src/org/ebml/UnknownElementType.java	2005-05-27 02:52:38 UTC (rev 1194)
+++ trunk/JEBML/src/org/ebml/UnknownElementType.java	2005-05-27 03:12:57 UTC (rev 1195)
@@ -19,7 +19,6 @@
  */
 package org.ebml;
 
-import org.ebml.util.*;
 import java.util.*;
 
 public class UnknownElementType extends ElementType {

Modified: trunk/JEBML/src/org/ebml/matroska/MatroskaBlock.java
===================================================================
--- trunk/JEBML/src/org/ebml/matroska/MatroskaBlock.java	2005-05-27 02:52:38 UTC (rev 1194)
+++ trunk/JEBML/src/org/ebml/matroska/MatroskaBlock.java	2005-05-27 03:12:57 UTC (rev 1195)
@@ -20,7 +20,6 @@
 package org.ebml.matroska;
 
 import org.ebml.*;
-import org.ebml.io.*;
 import org.ebml.util.*;
 
 public class MatroskaBlock extends BinaryElement {

Modified: trunk/JEBML/src/org/ebml/matroska/MatroskaCluster.java
===================================================================
--- trunk/JEBML/src/org/ebml/matroska/MatroskaCluster.java	2005-05-27 02:52:38 UTC (rev 1194)
+++ trunk/JEBML/src/org/ebml/matroska/MatroskaCluster.java	2005-05-27 03:12:57 UTC (rev 1195)
@@ -21,7 +21,6 @@
 
 import org.ebml.*;
 import org.ebml.util.*;
-import java.util.*;
 
 /**
  * Summary description for MatroskaCluster.

Modified: trunk/JEBML/src/org/ebml/matroska/MatroskaDocType.java
===================================================================
--- trunk/JEBML/src/org/ebml/matroska/MatroskaDocType.java	2005-05-27 02:52:38 UTC (rev 1194)
+++ trunk/JEBML/src/org/ebml/matroska/MatroskaDocType.java	2005-05-27 03:12:57 UTC (rev 1195)
@@ -20,7 +20,6 @@
 package org.ebml.matroska;
 
 import org.ebml.*;
-import org.ebml.util.*;
 import java.util.*;
 
 /**