Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TES : Add some incosistencies #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

sils
Copy link

@sils sils commented Jun 19, 2017

No description provided.

val config = new util.HashMap[String, String]()
config.put("model", "true")
val config = new util.HashMap[String, String]()
config.put("model", "true")
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line contains following spacing inconsistencies:

  • Trailing whitespaces.

Origin: SpaceConsistencyBear, Section: cli.

The issue can be fixed by applying the following patch:

--- a/app/controllers/AsyncController.scala
+++ b/app/controllers/AsyncController.scala
@@ -21,7 +21,7 @@
 
   private def simpleZ3Check(): Future[String] = Future {
     val config = new util.HashMap[String, String]()  
-    config.put("model", "true")  
+    config.put("model", "true")
     config.put("unsat_core", "true")
     val context = new Context(config)
     val a = 4

@@ -20,8 +20,8 @@ object AsyncController extends Controller {
}

private def simpleZ3Check(): Future[String] = Future {
val config = new util.HashMap[String, String]()
config.put("model", "true")
val config = new util.HashMap[String, String]()
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line contains following spacing inconsistencies:

  • Trailing whitespaces.

Origin: SpaceConsistencyBear, Section: cli.

The issue can be fixed by applying the following patch:

--- a/app/controllers/AsyncController.scala
+++ b/app/controllers/AsyncController.scala
@@ -20,7 +20,7 @@
   }
 
   private def simpleZ3Check(): Future[String] = Future {
-    val config = new util.HashMap[String, String]()  
+    val config = new util.HashMap[String, String]()
     config.put("model", "true")  
     config.put("unsat_core", "true")
     val context = new Context(config)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants