Merge pull request #197 from span/htmlencoder
Fixes #195 by adding static initialisation of the maps
This commit is contained in:
commit
dbb75980c9
@ -119,14 +119,13 @@ public class HtmlEncoder
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Constructor for HtmlEncoder.</p>
|
* Initialises the mappings between entities and characters
|
||||||
*/
|
*/
|
||||||
public HtmlEncoder()
|
static {
|
||||||
{
|
for (int i = 0; i < entities.length; i++)
|
||||||
for (int i = 0; i < entities.length; i++)
|
e2i.put((String) entities[i][0], (Integer) entities[i][1]);
|
||||||
e2i.put((String) entities[i][0], (Integer) entities[i][1]);
|
for (int i = 0; i < entities.length; i++)
|
||||||
for (int i = 0; i < entities.length; i++)
|
i2e.put((Integer) entities[i][1], (String) entities[i][0]);
|
||||||
i2e.put((Integer) entities[i][1], (String) entities[i][0]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user