no message
This commit is contained in:
6
.idea/workspace.xml
generated
6
.idea/workspace.xml
generated
@@ -8,8 +8,10 @@
|
|||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
|
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/properties" beforeDir="false" afterPath="$PROJECT_DIR$/properties" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/ComponentsServer/ComponentsServer.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/ComponentsServer/ComponentsServer.java" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/GlobalData/CompilerOption/UI/CompilerOptionsForm.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/GlobalData/CompilerOption/UI/CompilerOptionsForm.java" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Constants.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Constants.java" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Repository/Server/RepositoryServer.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Repository/Server/RepositoryServer.java" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/TestingSystem/Common/TestingServer.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/TestingSystem/Common/TestingServer.java" afterDir="false" />
|
||||||
</list>
|
</list>
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
|
|||||||
@@ -105,10 +105,6 @@ public class ComponentsServer extends RepositoryServer<BugReportsDatabase> {
|
|||||||
super(BugReportsDatabase.class);
|
super(BugReportsDatabase.class);
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public String getServerFileName() {
|
|
||||||
return "VisualSapfor.jar";
|
|
||||||
}
|
|
||||||
@Override
|
|
||||||
public String getServerHomeName() {
|
public String getServerHomeName() {
|
||||||
return "_sapfor_x64";
|
return "_sapfor_x64";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ public class Constants {
|
|||||||
public static final String SMTPHost = "smtp.mail.ru";
|
public static final String SMTPHost = "smtp.mail.ru";
|
||||||
public static final int SMTPPort = 465;
|
public static final int SMTPPort = 465;
|
||||||
public static final int MailSocketPort = 465;
|
public static final int MailSocketPort = 465;
|
||||||
//7796 отладочный порт
|
//7796 отладочный порт Is_DVM_STAT //
|
||||||
public static final int ComponentsServerPort = 7995; //7795
|
public static final int ComponentsServerPort = 7995; //7795
|
||||||
public static final int TestingServerPort = 7998; //7998
|
public static final int TestingServerPort = 7998; //7998
|
||||||
public static final int SocketTimeout = 0;
|
public static final int SocketTimeout = 0;
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ import java.util.Vector;
|
|||||||
public abstract class RepositoryServer<D extends Database> {
|
public abstract class RepositoryServer<D extends Database> {
|
||||||
protected static FileWriter Log;
|
protected static FileWriter Log;
|
||||||
protected static boolean printOn = true;
|
protected static boolean printOn = true;
|
||||||
public abstract String getServerFileName();
|
public String getServerFileName(){return Constants.ApplicationFileName;};
|
||||||
public abstract String getServerHomeName();
|
public abstract String getServerHomeName();
|
||||||
//-
|
//-
|
||||||
public D db;
|
public D db;
|
||||||
|
|||||||
@@ -266,10 +266,6 @@ public class TestingServer extends RepositoryServer<TestsDatabase> {
|
|||||||
//-
|
//-
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public String getServerFileName() {
|
|
||||||
return "TestingSystem.jar";
|
|
||||||
}
|
|
||||||
@Override
|
|
||||||
public String getServerHomeName() {
|
public String getServerHomeName() {
|
||||||
return "_testing_system";
|
return "_testing_system";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user