Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.core / src / net / sourceforge / phpdt / internal / debug / core / PHPDBGMod.java
index f973f8d..bbc8be6 100644 (file)
@@ -1,25 +1,26 @@
 /**********************************************************************
-Copyright (c) 2000, 2002 IBM Corp. and others.
-All rights reserved. This program and the accompanying materials
-are made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-
-Contributors:
-       Vicente Fernando - www.alfersoft.com.ar - Initial implementation
-**********************************************************************/
+ Copyright (c) 2000, 2002 IBM Corp. and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Common Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/cpl-v10.html
+
+ Contributors:
+ Vicente Fernando - www.alfersoft.com.ar - Initial implementation
+ **********************************************************************/
 package net.sourceforge.phpdt.internal.debug.core;
 
 public class PHPDBGMod {
        private int modNo;
+
        private String modName;
 
-       public PHPDBGMod() {
-       }
+//     public PHPDBGMod() {
+//     }
 
        public PHPDBGMod(int modNo, String modName) {
-               this.modNo= modNo;
-               this.modName= modName;
+               this.modNo = modNo;
+               this.modName = modName;
        }
 
        public int getNo() {
@@ -30,11 +31,11 @@ public class PHPDBGMod {
                return modName;
        }
 
-       public void setNo(int modNo) {
-               this.modNo= modNo;
-       }
+//     public void setNo(int modNo) {
+//             this.modNo = modNo;
+//     }
 
        public void setName(String modName) {
-               this.modName= modName;
+               this.modName = modName;
        }
 }
\ No newline at end of file