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
da7204cf
Commit
da7204cf
authored
4 years ago
by
Branden Boehr (bjb286)
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Merge remote-tracking branch 'origin/master'"
This reverts commit
83e52e34
parent
83e52e34
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!48
Feature detect program/launch application
,
!42
Revert "Merge remote-tracking branch 'origin/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 @
da7204cf
...
...
@@ -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
,
Modifier
modifier
)
throws
AWTException
{
public
Action
(
int
keyCode
,
int
id
,
int
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 @
da7204cf
...
...
@@ -14,7 +14,7 @@ public class Hotkey {
/**
* Modifier for the hotkey.
*/
protected
final
Modifier
modifier
;
protected
final
int
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
,
Modifier
modifier
)
{
public
Hotkey
(
int
keyCode
,
int
id
,
int
modifier
)
{
this
.
keyCode
=
keyCode
;
this
.
id
=
id
;
this
.
modifier
=
modifier
;
...
...
@@ -45,7 +45,7 @@ public class Hotkey {
/**
* Get's the hotkey's modifier.
*/
public
Modifier
getModifier
()
{
public
int
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