[jboss-cvs] JBoss Messaging SVN: r4829 - branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Aug 18 09:57:51 EDT 2008


Author: ataylor
Date: 2008-08-18 09:57:50 -0400 (Mon, 18 Aug 2008)
New Revision: 4829

Removed:
   branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util/PropertyValue.java
Modified:
   branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util/TypedProperties.java
Log:
more tidying up

Deleted: branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util/PropertyValue.java
===================================================================
--- branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util/PropertyValue.java	2008-08-18 13:23:40 UTC (rev 4828)
+++ branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util/PropertyValue.java	2008-08-18 13:57:50 UTC (rev 4829)
@@ -1,37 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005-2008, Red Hat Middleware LLC, and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.messaging.util;
-
-import org.jboss.messaging.core.remoting.Encoder;
-
-/**
- * @author <a href="mailto:andy.taylor at jboss.org">Andy Taylor</a>
- */
-
-public interface PropertyValue
-{
-   Object getValue();
-
-   void write(Encoder buffer);
-
-   int encodeSize();
-}

Modified: branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util/TypedProperties.java
===================================================================
--- branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util/TypedProperties.java	2008-08-18 13:23:40 UTC (rev 4828)
+++ branches/Branch_Message_Chunking_new/src/main/org/jboss/messaging/util/TypedProperties.java	2008-08-18 13:57:50 UTC (rev 4829)
@@ -424,7 +424,14 @@
       }
 		
 	}
-	
+	interface PropertyValue
+   {
+      Object getValue();
+
+      void write(Encoder buffer);
+
+      int encodeSize();
+   }
    private static final class ByteValue implements PropertyValue
 	{
 		final byte val;




More information about the jboss-cvs-commits mailing list