]> source.dussan.org Git - javassist.git/commitdiff
checked the previous modifications and adjusted the format.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sun, 10 Apr 2005 02:18:29 +0000 (02:18 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sun, 10 Apr 2005 02:18:29 +0000 (02:18 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@167 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/bytecode/ClassFile.java
src/main/javassist/bytecode/ConstPool.java

index 74711369d264f288a09e4ea543b36f79bf36680e..ddcd5d8df4c25cefa4314e3741cc8a4b4659ccd5 100644 (file)
@@ -625,42 +625,38 @@ public final class ClassFile {
     }
 
     /**
-     * Get the Major version
+     * Get the Major version.
      *
      * @return the major version
      */
-    public int getMajorVersion()
-    {
+    public int getMajorVersion() {
         return major;
     }
 
     /**
-     * Set the Major version
+     * Set the Major version.
      *
-     * @param major the major version
+     * @param major         the major version
      */
-    public void setMajorVersion(int major)
-    {
+    public void setMajorVersion(int major) {
        this.major = major;
     }
 
     /**
-     * Get the Minor version
+     * Get the Minor version.
      *
      * @return the minor version
      */
-    public int getMinorVersion()
-    {
+    public int getMinorVersion() {
         return minor;
     }
 
     /**
-     * Set the Minor version
+     * Set the Minor version.
      *
-     * @param minor the minor version
+     * @param minor         the minor version
      */
-    public void setMinorVersion(int minor)
-    {
+    public void setMinorVersion(int minor) {
        this.minor = minor;
     }
 }
index 6093145c58eeba054149d7dafd9ab7cbc3108d60..fba81d56d56acb3c370632deba9c68d1cf0c001a 100644 (file)
@@ -841,7 +841,7 @@ public final class ConstPool {
     }
 
     /**
-     * Get all the class names
+     * Get all the class names.
      *
      * @return a set of class names
      */
@@ -850,8 +850,7 @@ public final class ConstPool {
         HashSet result = new HashSet();
         LongVector v = items;
         int size = numOfItems;
-        for (int i = 1; i < size; ++i)
-        {
+        for (int i = 1; i < size; ++i) {
             String className = ((ConstInfo) v.elementAt(i)).getClassName(this);
             if (className != null)
                result.add(className);
@@ -1033,8 +1032,7 @@ class ClassInfo extends ConstInfo {
 
     public int getTag() { return tag; }
 
-    public String getClassName(ConstPool cp)
-    {
+    public String getClassName(ConstPool cp) {
         return cp.getUtf8Info(name);
     };