Revision: 5283
http://jython.svn.sourceforge.net/jython/?rev=5283&view=rev
Author: fwierzbicki
Date: 2008-09-03 00:19:22 +0000 (Wed, 03 Sep 2008)
Log Message:
-----------
Remove unused file.
Removed Paths:
-------------
trunk/jython/src/org/python/compiler/SourceFile.java
Deleted: trunk/jython/src/org/python/compiler/SourceFile.java
===================================================================
--- trunk/jython/src/org/python/compiler/SourceFile.java 2008-09-02 14:43:50 UTC (rev 5282)
+++ trunk/jython/src/org/python/compiler/SourceFile.java 2008-09-03 00:19:22 UTC (rev 5283)
@@ -1,24 +0,0 @@
-// Copyright (c) Corporation for National Research Initiatives
-
-package org.python.compiler;
-import java.io.DataOutputStream;
-import java.io.IOException;
-
-public class SourceFile {
- String attName;
- String filename;
-
- public SourceFile(String name) throws IOException {
- //this.attName = pool.UTF8("SourceFile");
- //this.filename = pool.UTF8(name);
- this.attName = "SourceFile";
- this.filename = name;
- }
-
- public void write(DataOutputStream stream) throws IOException {
- //FIXME: need to LDC the att and name.
- //FJW stream.writeShort(attName);
- //FJW stream.writeInt(2);
- //FJW stream.writeShort(filename);
- }
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|