Commit 9eb35009 authored by claes's avatar claes

Revering to 1.4 Vector style

parent 20463462
/*
* Proview $Id: XttObj.java,v 1.5 2006-06-16 05:09:38 claes Exp $
* Proview $Id: XttObj.java,v 1.6 2006-06-16 05:18:25 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -362,7 +362,8 @@ public class XttObj extends DynamicObj implements JopDynamic
public void localDynamicClose()
{
Logg.logg("XttObj: localDynamic close_vector", 6);
Vector<PwrtRefId> unref_vec = new Vector<PwrtRefId>();
//Vector<PwrtRefId> unref_vec = new Vector<PwrtRefId>();
Vector unref_vec = new Vector();
for(int i = 0; i < attrVector.size(); i++)
{
XttObjAttr obj = (XttObjAttr)attrVector.get(i);
......
/*
* Proview $Id: XttTree.java,v 1.11 2006-06-16 05:09:38 claes Exp $
* Proview $Id: XttTree.java,v 1.12 2006-06-16 05:19:28 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -843,8 +843,8 @@ public class XttTree extends JPanel
}
}
//public Vector createPathVec(String name)
public Vector<String> createPathVec(String name)
//public Vector<String> createPathVec(String name)
public Vector createPathVec(String name)
{
//Vector<String> pathVec = new Vector<String>();
Vector pathVec = new Vector();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment