Browse Source

Make it serializable

Requested by: Jonas G�ransson (jongo728@student.liu.se)


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273110 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
74617bddce
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/main/org/apache/tools/ant/Location.java

+ 3
- 1
src/main/org/apache/tools/ant/Location.java View File

@@ -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;


Loading…
Cancel
Save