From 74617bddce8f3688833724275829696fb03b92c7 Mon Sep 17 00:00:00 2001 From: Stephane Bailliez Date: Mon, 15 Jul 2002 12:37:56 +0000 Subject: [PATCH] =?UTF-8?q?Make=20it=20serializable=20Requested=20by:=20Jo?= =?UTF-8?q?nas=20G=EF=BF=BDransson=20(jongo728@student.liu.se)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273110 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/Location.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/Location.java b/src/main/org/apache/tools/ant/Location.java index 80d1455a4..076ee0075 100644 --- a/src/main/org/apache/tools/ant/Location.java +++ b/src/main/org/apache/tools/ant/Location.java @@ -54,12 +54,14 @@ package org.apache.tools.ant; +import java.io.Serializable; + /** * Stores the location of a piece of text within a file (file name, * line number and column number). Note that the column number is * currently ignored. */ -public class Location { +public class Location implements Serializable { /** Name of the file. */ private String fileName;