Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sinister Zeta Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sinister Zeta
Sinister Zeta Project
Commits
e34b4de5
Commit
e34b4de5
authored
4 years ago
by
Dallin Nickel (djn011)
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Merge branch 'prototype' into 'master'"
This reverts merge request
!37
parent
afe9579b
Branches
revert-afe9579b
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!48
Feature detect program/launch application
,
!39
Revert "Merge branch 'prototype' into 'master'"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/model/Action.java
+1
-1
1 addition, 1 deletion
src/model/Action.java
src/model/Hotkey.java
+3
-3
3 additions, 3 deletions
src/model/Hotkey.java
with
4 additions
and
4 deletions
src/model/Action.java
+
1
−
1
View file @
e34b4de5
...
...
@@ -14,7 +14,7 @@ public class Action extends Hotkey implements InputEmulator{
* @param id The unique ID of the hotkey.
* @param modifier The modifier of the hotkey.
*/
public
Action
(
int
keyCode
,
int
id
,
int
modifier
)
throws
AWTException
{
public
Action
(
int
keyCode
,
int
id
,
Modifier
modifier
)
throws
AWTException
{
super
(
keyCode
,
id
,
modifier
);
this
.
robot
=
new
Robot
();
...
...
This diff is collapsed.
Click to expand it.
src/model/Hotkey.java
+
3
−
3
View file @
e34b4de5
...
...
@@ -14,7 +14,7 @@ public class Hotkey {
/**
* Modifier for the hotkey.
*/
protected
final
int
modifier
;
protected
final
Modifier
modifier
;
/**
* Constructs an immutable hotkey.
...
...
@@ -22,7 +22,7 @@ public class Hotkey {
* @param id The unique ID of the hotkey.
* @param modifier The modifier of the hotkey.
*/
public
Hotkey
(
int
keyCode
,
int
id
,
int
modifier
)
{
public
Hotkey
(
int
keyCode
,
int
id
,
Modifier
modifier
)
{
this
.
keyCode
=
keyCode
;
this
.
id
=
id
;
this
.
modifier
=
modifier
;
...
...
@@ -45,7 +45,7 @@ public class Hotkey {
/**
* Get's the hotkey's modifier.
*/
public
int
getModifier
()
{
public
Modifier
getModifier
()
{
return
modifier
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment