Commit 2a4ad350 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Make methods private.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@834 b35dd754-fafc-0310-a699-88a17e54d16e
parent dc22e3c6
...@@ -405,7 +405,7 @@ public class Group implements Cacheable { ...@@ -405,7 +405,7 @@ public class Group implements Cacheable {
} }
} }
public void insertProperty(String propName, String propValue) { private void insertProperty(String propName, String propValue) {
Connection con = null; Connection con = null;
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
try { try {
...@@ -427,7 +427,7 @@ public class Group implements Cacheable { ...@@ -427,7 +427,7 @@ public class Group implements Cacheable {
} }
} }
public void updateProperty(String propName, String propValue) { private void updateProperty(String propName, String propValue) {
Connection con = null; Connection con = null;
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
try { try {
...@@ -449,7 +449,7 @@ public class Group implements Cacheable { ...@@ -449,7 +449,7 @@ public class Group implements Cacheable {
} }
} }
public void deleteProperty(String propName) { private void deleteProperty(String propName) {
Connection con = null; Connection con = null;
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
try { try {
......
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