|
From: <sa...@us...> - 2003-09-29 14:19:56
|
Update of /cvsroot/jrobin/src/jrobin/core
In directory sc8-pr-cvs1:/tmp/cvs-serv4459/jrobin/core
Modified Files:
Archive.java Datasource.java XmlReader.java
Log Message:
Removed 'public' from methods which could have 'package' visibility
Index: Archive.java
===================================================================
RCS file: /cvsroot/jrobin/src/jrobin/core/Archive.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Archive.java 24 Sep 2003 11:32:24 -0000 1.2
--- Archive.java 29 Sep 2003 13:27:52 -0000 1.3
***************
*** 191,203 ****
}
! public double getXff() throws IOException {
return xff.get();
}
! public int getSteps() throws IOException {
return steps.get();
}
! public int getRows() throws IOException{
return rows.get();
}
--- 191,203 ----
}
! double getXff() throws IOException {
return xff.get();
}
! int getSteps() throws IOException {
return steps.get();
}
! int getRows() throws IOException{
return rows.get();
}
***************
*** 216,220 ****
}
! public FetchPoint[] fetch(FetchRequest request) throws IOException, RrdException {
long arcStep = getArcStep();
long fetchStart = Util.normalize(request.getFetchStart(), arcStep);
--- 216,220 ----
}
! FetchPoint[] fetch(FetchRequest request) throws IOException, RrdException {
long arcStep = getArcStep();
long fetchStart = Util.normalize(request.getFetchStart(), arcStep);
Index: Datasource.java
===================================================================
RCS file: /cvsroot/jrobin/src/jrobin/core/Datasource.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Datasource.java 24 Sep 2003 11:32:24 -0000 1.2
--- Datasource.java 29 Sep 2003 13:27:53 -0000 1.3
***************
*** 93,109 ****
}
! public String getDsType() throws IOException {
return dsType.get();
}
! public long getHeartbeat() throws IOException {
return heartbeat.get();
}
! public double getMinValue() throws IOException {
return minValue.get();
}
! public double getMaxValue() throws IOException {
return maxValue.get();
}
--- 93,109 ----
}
! String getDsType() throws IOException {
return dsType.get();
}
! long getHeartbeat() throws IOException {
return heartbeat.get();
}
! double getMinValue() throws IOException {
return minValue.get();
}
! double getMaxValue() throws IOException {
return maxValue.get();
}
Index: XmlReader.java
===================================================================
RCS file: /cvsroot/jrobin/src/jrobin/core/XmlReader.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** XmlReader.java 29 Sep 2003 11:25:05 -0000 1.2
--- XmlReader.java 29 Sep 2003 13:27:53 -0000 1.3
***************
*** 39,43 ****
private Node[] dsNodes, arcNodes;
! public XmlReader(String xmlFilePath) throws IOException, RrdException {
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
--- 39,43 ----
private Node[] dsNodes, arcNodes;
! XmlReader(String xmlFilePath) throws IOException, RrdException {
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
|